windows 10使用vscode进行远程代码开发 | tutorial to use vscode for remote development using ssh on windows
本文首发于个人博客 https://kezunlin.me/post/c93b6ba6/ ,欢迎阅读最新内容! tutorial to use vscode for remote development using ssh on windows <!--more--> Guide server sudo apt-get install openssh-server local install ssh-client on local machine. download VSCodeUserSetup-x64-1.36.1.exe from here and install. start vscode and install Remote Development extension. ctrl+shift+p and enter remote-ssh and configure for ssh. edit ~/.ssh/config Host node08 HostName 192.168.100.08 User root Host node09 HostName 192.168.100.09 User root use ssh-keygen instead of username and password copy local ~/.ssh/id_rsa.pub to remote