vscode 配置

问题汇总

1. remote ssh 连接不上

异常错误

The authenticity of host 'xxx.xxx.xxx.xxx' can't be established.

ECDSA key fingerprint is SHA256:xxxxxxxxxxxxxxxxxxxxxxxx.

解决方法

连接远程主机时, 去掉对主机的验证检查。

ssh -o StrictHostKeyChecking=no  192.168.xxx.xxx

2. 远程服务器无法下载

异常错误

Error: Running the contributed command: '_workbench.downloadResource' failed

解决方法

1、找到报错日志里面的 COMMIT_ID

例如,”379476f0e13988d90fab105c5c19e7abc8b1dea8” 到服务器对应的~/.vscode-server/bin/目录下也能找到

2、外网下载(首次使用VSCode链接服务器时,服务器需要下载的)(大约40多M)

https://update.code.visualstudio.com/commit:379476f0e13988d90fab105c5c19e7abc8b1dea8/server-linux-x64/stable

3、下载完毕后,将下载的文件上传到远程服务器的 ~/.vscode-server/bin/xxx 文件夹下,同时删除其他文件,再使用 tar -xvf vscode-server-linux-x64.tar.gz --strip-components 1 解压文件

Table of Contents