Notice: This extension is bundled with Cursor. It can be disabled but not uninstalled.
Many thanks to jeanp413
for creating the "Open Remote - SSH" extension that this work is based on. The license for "Open Remote - SSH" is reproduced at the end of this file.
You can connect to a running SSH server on the following platforms.
Supported:
- x86_64 Debian 8+, Ubuntu 16.04+, CentOS / RHEL 7+ Linux.
- ARMv7l (AArch32) Raspbian Stretch/9+ (32-bit).
- ARMv8l (AArch64) Ubuntu 18.04+ (64-bit).
- macOS 10.14+ (Mojave)
- Windows 10+
- FreeBSD 13 (Requires manual remote-extension-host installation)
- DragonFlyBSD (Requires manual remote-extension-host installation)
Activation
NOTE: Not needed in VSCodium since version 1.75
Enable the extension in your argv.json
{
...
"enable-proposed-api": [
...,
"jeanp413.open-remote-ssh",
]
...
}
which you can open by running the Preferences: Configure Runtime Arguments
command.
The file is located in ~/.vscode-oss/argv.json
.
Alpine linux
When running on alpine linux, the packages gcompat
, libstdc++
, and procps
are necessary and can be installed via
running
sudo apk add gcompat libstdc++ procps
OpenSSH supports using a configuration file to store all your different SSH connections. To use an SSH config file, run the Remote-SSH: Open SSH Configuration File...
command.
From https://github.com/jeanp413/open-remote-ssh/blob/master/LICENSE.txt.
MIT License
Copyright (c) 2022
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.