Skip to content

Instantly share code, notes, and snippets.

@gilangvperdana
Last active October 29, 2024 07:05
Show Gist options
  • Save gilangvperdana/125c9996f6d3f54945a197e88990a4ff to your computer and use it in GitHub Desktop.
Save gilangvperdana/125c9996f6d3f54945a197e88990a4ff to your computer and use it in GitHub Desktop.
VSCode SSH Install Offline on Ubuntu

General

If you want to pull VScode packages on Ubuntu Server, you can follow this step

Pull Offline Packages

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

You can use commit_id from VSCode that proceed or failure proceed on terminal debug view

Lets connect again

After you execute that bash, please connect again & enjoy.

Reference

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment