之前写过教程:
Windows下使用VS Code远程SSH连接Linux服务器进行开发
vscode 使用ssh密钥登录远程Linux – vscode remote linux ssh key
如果你的机器无法连接外网,无法下载vs code服务器端,那么会报错如下:
Running remote connection script
Installing to /home/zhang/.vscode-server/bin/2213894ea0415ee8c85c5eea0d0ff81ecc191529...
Downloading with wget
....
"install" terminal command done
Received install output: b7a67c2b-5d04-47c6-8be8-999adf02ef0c##25##
Server download failed
Downloading VS Code Server failed. Please try again later.
------
解决方法如下:
在下载时查看下载的具体命令:
zhang@ubuntu:~$ ps -aux | grep vscode
zhang 3026 0.0 0.2 47932 6012 ? S 12:18 0:00 wget -nv -O vscode-server-linux-x64.tar.gz https://update.code.visualstudio.com/commit:2213894ea0415ee8c85c5eea0d0ff81ecc191529/server-linux-x64/stable
然后到有网的机器手动进行下载:
wget vscode-server-linux-x64.tar.gz https://update.code.visualstudio.com/commit:2213894ea0415ee8c85c5eea0d0ff81ecc191529/server-linux-x64/stable
然后进行安装,替换文件为自己下载的文件
cd ~/.vscode-server/bin/*/
tar -zxvf vscode-server-linux-x64.tar.gz -C ./
mv vscode-server-linux-x64/* .
touch 0
现在重新连接就可以连上了。
可以在设置里配置代理,方便直接下载插件。