Visual Studio Code Ssh Remote



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. By default, the 'VS Code Server' is installed and maintained by the Remote - Containers extension when it connects to localhost on a random TCP port that is then forwarded to your local machine. This means only those users on the machine can access the port. Visual Studio Code Remote - SSH: Editing Configuration Files. The Remote - SSH extension lets you use any remote machine with a SSH server as your development environment. This extension complements the Remote - SSH extension with syntax colorization, keyword intellisense, and simple snippets when editing SSH configuration files. If you already have an extension that provides this. Feature demonstration for Visual Studio Code. The Visual Studio Code Remote - SSH extension allows you to open a remote folder on any remote machine, virtual machine, or container with a running SSH server and take full advantage of VS Code's feature set. Once connected to a server, you can interact.

Welcome to the final installment of A Windows Guy in a Linux World blog post series where you’ll learn to use VS Code to connect to a remote SSH host. If you have been following along with the series, by now you should already have all of the tools and knowledge to start remotely managing your Linux machines (including editing files).

Check out the previous posts in this series:

The tools covered previously are useful but they don’t feel Windows-like. The Linux tools may feel foreign and difficult to use compared to a native Windows experience. In this final article of a five-part series, you will learn how to edit files natively on your Windows machine using Visual Studio (VS) Code for a more modern experience.

Prerequisites

To follow along with the examples provided in this post, be sure you have the following:

  • Visual Studio Code for Windows. This guide will be using version 1.5.1.1
  • Windows 10 (SSH is needed and comes pre-installed)
  • An OpenSUSE host with SSH enabled, and Midnight Commander installed

The Need for a Great Editing Environment

Linux does not have a central registry. Unlike Windows, virtually everything about Linux revolves around configuration files. Every change you make in a GUI, every box you tick in a web interface, every configuration change you make, there’s a file somewhere that reflects that setting.

Remote Ssh With Visual Studio Code

Because configuration files are so important in Linux, you need a great text editor. Linux has a few good ones including the Midnight Commander text editor (known as mcedit) covered earlier.

However, this series is for working on Linux from the perspective of a Windows user. Windows has (arguably) the best text editor on the market. Even better: It’s entirely compatible with the Linux remoting protocol (SSH).

Visual Studio Code – Microsoft’s Preferred Text Editor

Microsoft makes an incredibly powerful text editor: Visual Studio Code. VS Code has taken over just about every other text editor in the Microsoft ecosystem to be the primary way to edit files on Windows. You may already be familiar with Visual Studio Code: it’s covered frequently on this site.

Visual Studio Code is technically an Integrated Development Environment (IDE) as well as a syntax-aware editor. This means you can run shell commands directly inside the editor as well as use it for debugging your scripts.

Not only can you use VS Code to work with files locally, but VS Code also supports remote file-editing over SSH. Remote file-editing means that instead of navigating through the command line via an SSH prompt, you can directly open, explore, and edit files without leaving VS Code!

Installing the SSH Extension in Visual Studio Code

Ssh

VS Code doesn’t come with SSH support out of the box but using the power of the extension marketplace, you can add this functionality. To do so, you need to install the remote SSH extension.

  1. In VS Code, you should see a sidebar on the left that looks like a block. Click that icon to bring up the Extension Marketplace search box.

2. Type ssh to search for the Remote – SSH extension as shown below. The official Microsoft extension should be the top result.

3. Click the green Install button beside the Remote – SSH extension to begin installing it.

Once installed, you should immediately see a new icon in the sidebar called Remote Explorer as shown below.

At this point, you’re now ready to begin adding your SSH session.

Connecting to a Target Server with SSH in VS Code

Let’s now see how you can connect to your remote Linux machine over SSH and edit some files with VS Code!

  1. Click the Remote Explorer icon you just installed to open the remote explorer panel.

2. Click on the + symbol in the SSH Targets box to add a new SSH server to connect to as shown below.

3. Input ssh <user>@ip on the prompt on your target Linux machine, as described in the pre-requisites. For the example below the user is homelab and the ip is 172.25.179.190.

4. You should now see a blank prompt come up shown below asking where to save the config data. This is the file describing all of the saved connections, in the event we have multiple Linux devices that we connect to. For this example, you can leave the box blank to save in the default location. Press Enter to save the default location (C:users<user profile>.sshconfig).

Visual

5. Finally, right-click on the newly created SSH target and click Connect to Host in Current Window. This action will connect to the target over SSH and set up VS Code to work remotely.

If all went well, you should now be able to start configuring SSH immediately in the next section.

If you are getting stuck at this stage, make sure you actually can SSH to your target computer. The easiest way to test is to open a command window (on Windows 10) and test with ssh <user>@<ip>. If that does not work for you, VSCode will not be able to connect either.

Configuring SSH on Your First Connection

Once you’ve connected to the remote SSH server for the first time, you’ll need to do some initial configuration. As you can see below, VS Code will ask for the type of connection you are making (Linux), and prompt for a password. After a short delay you should see the bottom left corner turn green and say SSH: <your IP>.

You’re now all set up and ready to begin working with the remote filesystem!

Opening a Remote Folder and Files

Once you’ve connected for the first time, you can then begin opening files on the remote Linux server over SSH. To do so:

  1. Click on the top-left sidebar called the Explorer pane.

2. Click on the blue Open Folder button to open a remote folder.

3. Next, choose a folder to open. In the example below, we’re referencing the /home/<username> folder.

You may get a prompt to enter your password again when selecting the folder.

Once you have opened a folder, you should get a visual representation of the remote folder’s contents in the File Explorer panel shown below.

The base folder in the File Explorer panel is referred to as your workspace. The workspace is the folder you opened in the previous step. You can see below that the File Explorer panel now shows the contents of the folder you opened in the last step.

You can now open any file (like the .bashrc file in the screenshot) and VS Code will automatically display it in the main panel, complete with syntax highlighting!

You can technically open the root folder (/) as the workspace, and therefore have access to the entire filesystem (read more on the filing system in the second part of this series). However, VS Code will have issues automatically watching for changes if the target workspace is too large. VSCode will throw a warning, and you may have to manually refresh to see filesystem changes.

Picking a Different Working Folder

What if you open a folder and the files you need to work with are in a different folder? In this case, you can open another “base” folder or even add folders to your workspace.

If you’d like to open a completely separate folder (closing the last one), you can do so by navigating to the File menu, clicking on Open Folder, and choosing your new folder. This action will close VS Code and open a new workspace.

If you’d like to keep the other folder open and add another folder to your workspace, navigate to the File menu again and this time, click on Add Folder to Workspace. From here you can add new folders to the existing workspace.

You can see an explanation of this in the screenshot below.

Now that you have learned how to connect to a target and open up the explorer window at a folder, lets look at what you can actually do with the file explorer.

Transferring Files Between your Host and Target

VS Code is incredibly powerful, and the explorer pane is useful for more than just browsing and editing remote files. You can also use it to upload and download files directly to your server!

Uploading and downloading files is as simple as a drag and drop. For example, to upload a local file to the remote server:

  1. Navigate to the local folder that contains the file(s) you’d like to upload to the remote server.
  2. Drag the file(s) from the local Windows explorer window to the File Explorer pain in VS Code.

Done!

To download a file:

  1. Navigate to the file(s) you’d like to download from the remote server.
  2. Select the file(s), right-click on them and choose Download.
  3. Pick a place to save them to and voila, you’ve downloaded the file(s).

You can see these steps in action below.

You can also cut, copy, drag-and-drop, create new files/folders, and do most of what you expect out of an explorer window. It all happens remotely on the server.

Using VS Code as a Fully Featured SSH Terminal

VS Code still has one SSH trick up its sleeve; you can also use VS Code as a standard SSH terminal too!

While connected to an SSH target, click on the View menu and choose Terminal as shown below. VS Code will open a remote SSH session.

You can do everything in the terminal you can do by using SSH directly. That even includes using Midnight Commander, complete with mouse support! You can see Midnight Commander being launched below.

VS Code is using the native windows SSH client under the hood (7.7p1 as of Windows 10 v2009). To get mouse support, you’ll need the Microsoft SSH client (8.1p1 as of this article’s writing). You can read about that more in Part IV of this series.

Editing Protected Configs and Modifying Protected Files

There is one drawback about using VS Code compared to the command line: It will not modify files that require administrative rights to change. These are files that you have to open up with sudo to edit. You can get around this problem in two ways:

sudo is the way to elevate commands in Linux. It is equivalent to UAC in Windows. Rather than opening an elevated command prompt, you run commands with sudo in front.

Studio

Just like a normal SSH window, you can also run sudo commands within the VS Code Terminal. VS Code, however, cannot save files that require administrative rights to change. But you can use a tool called Midnight Commander (with sudo to create an explorer window inside the VSCode command line with administrative rights.

In the remote SSH session VS Code terminal, run sudo mc to open the Midnight Commander file management tool. Once in here, navigate to the protected files you’d like to edit and change them as you’d like. You should have no problem doing so.

Visual Studio Code Ssh RemoteMicrosoft visual studio code remote ssh

Actions are shown below.

The drawback of using sudo mc for administrative changes is fairly large: You are entirely restricted to using the VS Code terminal. This means that most of the graphical features of VS Code such as the explorer pane, and even the main editing window, cannot be used. You are entirely restricted to the terminal window for navigation.

Using the Midnight Commander workaround in VS Code will work but you shouldn’t be editing protected files that often. Using sudo mc should only be required to make a small change or perform a once-off configuration.

If you have files that you are working on regularly, you should be included in the ownership or group for that folder. Doing so negates the need for administrative rights to be required.

Related post: Setting up an SSH Key Exchange Connection with VS Code and SSH

Wrap-Up

Thanks to everyone who stuck through this five-part series. With the configuration of VS Code, you now should be ready to continue your journey through the Linux world.

With the concepts down, you now have a strong foundation to start branching off into the more practical parts of Linux: running servers, learning docker, and setting up your own infrastructure. Stay tuned, and expect lots more Linux related projects to pop up here in the future!

Related

Note: This extension is deprecated and its functionality is now included in the Remote-SSH extension.

The Remote - SSH extension lets you use any remote machine with a SSH server as your development environment.

This extension complements the Remote - SSH extension with a custom explorer that shows for each of the configured SSH hosts the recent history of opened folders and workspaces. It also allows you to configure port forwarding.

Questions, Feedback, Contributing

Have a question or feedback?

  • See the documentation or the troubleshooting guide.
  • Up-vote a feature or request a new one, search existing issues, or report a problem.
  • Contribute to our documentation
  • ...and more. See our CONTRIBUTING guide for details.

Or connect with the community...

Telemetry

Visual Studio Code Remote - SSH: Explorer and related extensions collect telemetry data to help us build a better experience working remotely from VS Code. We only collect data on which commands are executed. We do not collect any information about image names, paths, etc. The extension respects the telemetry.enableTelemetry setting which you can learn more about in the Visual Studio Code FAQ.

License

Visual Studio Code Ssh Remote Config

By downloading and using the Visual Studio Remote - SSH: Explorer extension and its related components, you agree to the product license terms and privacy statement.