如何离线在 linux 中安装 vscode 服务器



我正在尝试安装 VScode 远程 ssh 扩展,但我的远程主机无法连接到互联网,因此不需要下载软件。 所以我收到了一些这样的错误消息:

SSH Resolver called for "ssh-remote+kf"
SSH Resolver called for host: kf
Setting up SSH remote "kf"
Using commit id "daf71423252a707b8e396e8afa8102b717f8213b" and quality "insider" for server
Install and start server if needed
> bash: no job control in this shell
> Installing...
> Downloading with wget
> ERROR: certificate common name “*.azurewebsites.net” doesn’t match requested host name “update.code.visualstudio.com”. To connect to update.code.visualstudio.com insecurely, use ‘--no-check-certificate’.
> 2b948abc-b874-4ef5-875a-a29370a5f844##25##
"install" terminal command done
Received install output: 2b948abc-b874-4ef5-875a-a29370a5f844##25##
Server download failed
Downloading VS Code Server failed. Please try again later.

我该如何解决这个问题?

  1. 首先获取提交 ID
  2. 从网址下载 vscode 服务器:https://update.code.visualstudio.com/commit:${commit_id}/server-linux-x64/stable
  3. vscode-server-linux-x64.tar.gz上传到服务器
  4. 将下载的vscode-server-linux-x64.tar.gz解压缩到没有 vscode-server-linux-x64 目录的~/.vscode-server/bin/${commit_id}
  5. ~/.vscode-server/bin/${commit_id}下创建0文件
commit_id=f06011ac164ae4dc8e753a3fe7f9549844d15e35
# Download url is: https://update.code.visualstudio.com/commit:${commit_id}/server-linux-x64/stable
curl -sSL "https://update.code.visualstudio.com/commit:${commit_id}/server-linux-x64/stable" -o vscode-server-linux-x64.tar.gz
mkdir -p ~/.vscode-server/bin/${commit_id}
tar zxvf vscode-server-linux-x64.tar.gz -C ~/.vscode-server/bin/${commit_id} --strip 1
touch ~/.vscode-server/bin/${commit_id}/0

-或-

请参阅此 Gist 下载与代码服务器以获取更完整的 shell 脚本,该脚本还将获得最新发布的提交 SHA(来自 GitHub),因此您无需自己提供。


[编辑以添加有用的注释,以防以后注释消失:]

可以将commit:<commit>替换为latest以获取最新版本。示例:https://update.code.visualstudio.com/latest/server-linux-x64/stable.尊重表示的质量,即stableinsider。- 毁灭战士5

最新更新