Home > Blockchain >  Disable install of VS Code server
Disable install of VS Code server

Time:12-02

I use my VS Code remote - SSH extension to jump between a lot my customers servers, and would actually like not install the VS Code server on every server that I use.

Is there a way not to install the VS Code server, when you use the Remote - SSH extension, or is there maybe even another extension I should use instead?

CodePudding user response:

To fix this on your own (without using the script mentioned above), you could simply log into each of the linux. cs servers (using SSH), then the command pkill -u node , which will stop any running vscode-server processes

CodePudding user response:

I fixed it but not using the official remote - SSH, but the extension SSH FS, which is a little more combersome as it can see you'r "normal" ssh config, but i works. https://marketplace.visualstudio.com/items?itemName=Kelvin.vscode-sshfs

  • Related