How to Set Up ARM64 Code Server from tar.gz Release? #6555
-
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-server In ARM64In AMD64 |
Beta Was this translation helpful? Give feedback.
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? |
Beta Was this translation helpful? Give feedback.
Very interesting! Thank you for confirming.
If this is an arm64 system
node-v18.15.0-linux-arm64
is surely the right version. Doesuname -a
report the right architecture? If the amd64 binary works this is probably an amd64 system.