You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
Go to file
yetao d4aa1263b4
refactor🎨: (阅读代码):sshFileSystem.ts增加注释
2 weeks ago
.github/workflows Update workflows to use ubuntu-22.04 and updated dependencies (#372) 2 years ago
.vscode Fix debug launch task, improve logging and fix a VS Code bug regarding logging when debugging 2 years ago
.yarn Apply modified Eugeny/ssh2#rsa-sha as ssh2 patch + add OPENSSH-SHA1 flag to use it (#309) 2 years ago
common refactor🎨: (阅读代码):fileSystemConfig.ts增加注释 3 weeks ago
media Overhaul README and improve package.json 4 years ago
resources Refactor tree views + make Manager use ConnectionManager 4 years ago
src refactor🎨: (阅读代码):sshFileSystem.ts增加注释 2 weeks ago
webview Add support for extending configs to the Settings UI (#268) 2 years ago
.gitattributes Major refactor: 3 years ago
.gitignore Major refactor: 3 years ago
.vscodeignore Fix build workflow to account for incompatibility from using a new vsce version 2 years ago
.yarnrc.yml Upgrade dependencies 2 years ago
CHANGELOG.md v1.26.1 2 years ago
LICENSE.txt Add license (issue #101) 6 years ago
README.md Fix linter warnings in Markdown files 2 years ago
enhance-changelog.js Fix small issue in `enhance-changelog.js` utility 3 years ago
map-error.js Fix/improve map-error.js utility 3 years ago
package.json 🦄 refactor(阅读代码): 补充package.json的说明 4 weeks ago
tsconfig.json Create common module 3 years ago
tslint.json Initial (big) commit 7 years ago
webpack.config.js Update to ssh2@^1.6.0.0 3 years ago
webpack.plugin.js Fix/improve map-error.js utility 3 years ago

README.md

SSH FS

Logo

GitHub package version Visual Studio Marketplace OpenVSX Registry

VS Market installs GitHub Sponsors Donate

This extension allows mounting remote folders as local workspace folders, launch integrated remote terminals and run ssh-shell tasks.

Features

Config editor

The built-in config editor makes it easy to create and edit configurations: Config editor

The config editors stores this, by default, in your User Settings (settings.json) as:

"sshfs.configs": [
    {
        "name": "hetzner",
        "putty": "Hetzner",
        "label": "Hetzner",
        "hop": "hetzner2",
        "root": "/root"
    }
],

This config is configured to copy settings (e.g. username, host, ...) from my PuTTY session. Due to me having loaded my private key in Pageant (PuTTY's agent), this config allows me to create a connection without having to provide a password/passphrase. It also specifies that all file operations (ssh://hetzner/some/file.js) are relative to the /root directory on the server.

Configurations are read from your global User Settings, the current workspace's settings, and any JSON files configured with sshfs.configpaths. Even when the workspace overrides this setting, the globally-configured paths will still be read. The workspace versions do have higher priority for merging or ignoring duplicates.

Terminals

Using a simple button or the command palette, a remote terminal can be started: Terminals

Uses $SHELL by default to launch your default user shell. A config option exists to change this, e.g. "ksh -" or "exec .special-profile; $SHELL"

If a connection is already opened for a configuration, there is no need to reauthenticate. As long as the configuration hasn't changed, existing connections (both for workspace folders and terminals) will be reused.

Remote shell tasks

A new task type ssh-shell is added to run shell commands remotely: Remote shell tasks

The task terminal opens a full PTY terminal on the server.

Remote workspace folders

Using a simple button or the command palette, we can mount a remote workspace folder as a regular local workspace folder: Remote workspace folder

Same configuration used as from the [Config editor](#Config editor) above.

This works seamlessly with extensions using the vscode.workspace.fs API (added in VS Code 1.37.0), although not all extensions switched over, especially ones making use of binary files.

As can be seen, right-clicking a remote directory gives the option to instantly open a remote terminal in this directory.

The extension supports any ssh:// URI. I actually opened ssh://hetzner/ng-ui as my folder, which resolves to /root/ng-ui on my remote server. By default, the button/command opens ssh://hetzner/ which would then mount /root, as that is what my Root config field is set to. You can set it to whatever, including ~/path.

Miscellaneous

The extension comes with a bunch of other improvements/features. Internally the ssh2 package is used. The raw config JSON objects (as seen in [Config editor](#Config editor)) is, apart from some special fields, a one-on-one mapping of the config options supported by this package. Power users can edit their settings.json to e.g. make use of the algorithms.cipher field to specify a list of ciphers to use.

Some other features worth mentioning:

Prompt host/username/password/... for every connection

Prompt username

Active connections are reused to minimize prompts. A connection gets closed if there's no terminal or file system using it for over 5 seconds.

Proxy settings

Several proxy types (SSH hopping, HTTP and SOCKS 4/5) are supported:

Proxy settings

SSH Hop refers to using another configuration to hop through, similar to OpenSSH's ProxyJump:

Hop config field

SFTP Command/Sudo and Terminal command

SFTP and Terminal Command config fields

The extension supports using a custom sftp subsystem command. By default, it uses the sftp subsystem as indicated by the remote SSH server. In reality, this usually results in /usr/lib/openssh/sftp-server being used.

The SFTP Command setting allows specifying to use a certain command instead of the default subsystem. The SFTP Sudo setting makes the extension try to create a sudo shell (for the given user, or whatever sudo defaults to) and run SFTP Command (or /usr/lib/openssh/sftp-server by default). For most users, setting this to <Default> should allow operating on the remote file system as root. Power users with esoteric setups can resort to changing SFTP Command to e.g. sudo /some-sftp-server, but might run into trouble with password prompts.

The Terminal command option, as mentioned in Terminals, allows overriding the command used to launch the remote shell. By default, the extension launches a remote shell over the SSH connection, runs cd ... if necessary, followed by $SHELL to start the user's default shell. This config option allows to replace this $SHELL with a custom way way of starting the shell, or configuring the provided default SSH shell.