diff --git a/content/projects/sshubl/featured.png b/content/projects/sshubl/featured.png new file mode 100644 index 0000000..0a2bbe2 --- /dev/null +++ b/content/projects/sshubl/featured.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a9a2fbff8e7ac94febb91f6b05e40a4cfc28e3dfff96d61c1bc4a42d4dafb996 +size 46716 diff --git a/content/projects/sshubl/featured.webp b/content/projects/sshubl/featured.webp new file mode 100644 index 0000000..9ec3769 --- /dev/null +++ b/content/projects/sshubl/featured.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd99e5272dbb2e5bd180764a2e9b4fc2dbd371920813c90a4585930544dd6be0 +size 20220 diff --git a/content/projects/sshubl/img/image-1.gif b/content/projects/sshubl/img/image-1.gif new file mode 100644 index 0000000..4840068 Binary files /dev/null and b/content/projects/sshubl/img/image-1.gif differ diff --git a/content/projects/sshubl/index.md b/content/projects/sshubl/index.md new file mode 100644 index 0000000..02d20c1 --- /dev/null +++ b/content/projects/sshubl/index.md @@ -0,0 +1,110 @@ +--- +title: "SSHubl" +date: 2024-07-06 +slug: "sshubl" +showAuthor: false +showWordCount: false +showReadingTime: false +showRelatedContent: false +showPagination: false +tags: ["sublime", "package", "remote"] +--- + +![overview](featured.png) +{{< github repo="HorlogeSkynet/SSHubl" >}} + +> A Sublime Text 4+ plugin for your SSH connections + +![SSHubl](img/image-1.gif) + +## Introduction + +This plugin aims to grant the power of (Open)SSH to Sublime Text. Included features are : + +* Open a remote terminal +* Open a remote folder over sshfs +* Open forward and reverse ports (or UNIX sockets) +* Automatic environment re-setup on [project](https://www.sublimetext.com/docs/projects.html) opening + +It has been inspired by Visual Studio Code's [Remote - SSH](https://marketplace.visualstudio.com/items?itemName=ms-vscode-remote.remote-ssh) plugin, **without** the inconvenient of depending on a remote agent running on the SSH server. + +## Dependencies + +* Sublime Text 4081+ +* OpenSSH client +* sshfs (FUSE) client +* pexpect (Python package) +* [Terminus](https://packagecontrol.io/packages/Terminus) (Sublime Text package, for remote terminal feature) + +On Debian : `apt-get install -y sshfs` + +## Installation + + + +### Manually + +1. Go to the Sublime Text packages folder (usually `$HOME/.config/sublime-text/Packages/` or `%AppData%\Sublime Text\Packages\`) +2. Clone this repository there : `git clone https://github.com/HorlogeSkynet/SSHubl.git` +3. Satisfy `pexpect` and `ptyprocess` third-party dependencies in Sublime Text `Lib/python38/` folder (see [here](https://stackoverflow.com/a/61200528) for further information) +4. Restart Sublime Text and... :tada: + +## Usage + +Open your command palette and type in `SSHubl` to select `Connect to server`. Once connected, you will be able to select `Forward port/socket`, `Open/Select directory (mount sshfs)` or even `Open a terminal` commands. + +![Preview](https://i.imgur.com/mOqxMsP.gif) + +## Settings + +```javascript +{ + "debug": false, + // Custom path to OpenSSH client program + "ssh_path": null, + // Custom path to `sshfs` FUSE client program + "sshfs_path": null, + // Custom path to `umount` program (`fusermount` on Linux) + "umount_path": null, + // Custom options to pass to OpenSSH **master** (e.g. useful for bastion traversal) + "ssh_options": { + //"ConnectTimeout": 30, + }, + // Custom login timeout for (pexpect) + "ssh_login_timeout": 10, + // Set to `false` to disable host authentication for loopback addresses (cf. NoHostAuthenticationForLocalhost) + "ssh_host_authentication_for_localhost": true, + // Server keepalive interval (as recommended in sshfs documentation) + "ssh_server_alive_interval": 15, +} +``` + +## Frequently Asked Questions + +**Why can I connect to new hosts without accepting their fingerprint ?** + +> `pexpect` package is [known to always accept remotes' public key](https://github.com/pexpect/pexpect/blob/4.8.0/pexpect/pxssh.py#L411-L414), and it isn't configurable. + +**How is "SSHubl" pronounced ?** + +> \[ʃʌbəl\] + +**Why haven't you opted for a pure Python approach ?** + +> Paramiko doesn't support FUSE. There is also `fs.sshfs`, but it relies on PyFilesystem 2 which doesn't support "re-exposing" FUSE as local mount point. + +**Is SSHubl compatible with other SSH clients ?** + +> As it uses OpenSSH connections multiplexing feature, no. + +**Do you plan to support Sublime Text 3 ?** + +> It's very unlikely as SSHubl requires Python 3.8 runtime and depends on several Sublime Text 4081+ API.