Skip to content

Instantly share code, notes, and snippets.

@AdaRoseCannon
Last active February 18, 2021 17:48
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save AdaRoseCannon/fff11b56a36a11237eaf412d74286323 to your computer and use it in GitHub Desktop.
Save AdaRoseCannon/fff11b56a36a11237eaf412d74286323 to your computer and use it in GitHub Desktop.
#!/bin/bash
DIR="$HOME/bin"
cd /tmp
curl -s https://api.github.com/repos/cdr/code-server/releases/latest \
| grep "browser_download_url.\+linux-x86_64.tar.gz" \
| cut -d : -f 2,3 \
| tr -d \" \
| wget --output-document=code-server.tar.gz -qi -
tar xvzf /tmp/code-server.tar.gz --strip=1 --overwrite --wildcards --no-anchored -C "$DIR" 'code-server'
chmod +x "$DIR/code-server"
@Clearmist
Copy link

The release file naming scheme has changed slightly. wget will fail using this script. Change line 8 from linux-x64 to linux-x86_64.

@AdaRoseCannon
Copy link
Author

Done :)

@jslatane
Copy link

jslatane commented May 7, 2020

Thanks for posting this script. The script seems to work for me and everything installs but when I run
./code-server -H -p 8080
I get this:
./code-server: 18: exec: /home/jslatane/bin/node: not found
Is this something to do with not having node.js installed? I tried installing that as well but that didn't work. Any help is appreciated!

@AdaRoseCannon
Copy link
Author

That seems odd, code-server has changed a lot since I wrote this gist perhaps it's best to try to follow the instructions at https://github.com/cdr/code-server

@volb
Copy link

volb commented May 18, 2020

Hey, I've used this great script and want to thank you for it. I'm not sure but it looks like the name has changed again to "code-server-3.3.0-linux-amd64" for the tarball, from what I can tell.

@AdaRoseCannon
Copy link
Author

They also recently switched to distributing .debs instead which maybe a neater solution.

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