How to Set Up ARM64 Code Server from tar.gz Release? #6555
Answered
by
code-asher
Future-Outlier
asked this question in
Q&A
DescriptionI'm encountering an issue while trying to set up Code Server on an ARM64 system, following the instructions from the official documentation. Setup Processwget --no-check-certificate -O /tmp/code-server/code-server-4.19.0-linux-arm64.tar.gz https://github.com/coder/code-server/releases/download/v4.19.0/code-server-4.19.0-linux-arm64.tar.gz
tar -xzf ./code-server-4.19.0-linux-arm64.tar.gz -C ./
cd code-server-4.19.0-linux-arm64
./bin/code-serverIn ARM64In AMD64 |
Answered by
code-asher
Nov 29, 2023
Replies: 1 comment 3 replies
|
It is possible the build script has an bug. We try to download Node straight from nodejs.org for the appropriate architecture. code-server/.github/workflows/release.yaml Lines 174 to 179 in 0c98611 If you download and extract https://nodejs.org/dist/v18.15.0/node-v18.15.0-linux-arm64.tar.xz does the Node binary in there work? |
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment



Very interesting! Thank you for confirming.
If this is an arm64 system
node-v18.15.0-linux-arm64is surely the right version. Doesuname -areport the right architecture? If the amd64 binary works this is probably an amd64 system.