Skip to content

Instantly share code, notes, and snippets.

@andineck
Last active December 28, 2015 23:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save andineck/7577975 to your computer and use it in GitHub Desktop.
Save andineck/7577975 to your computer and use it in GitHub Desktop.
node.js installation on ubuntu virtual hosts like hosteurope.de
# connect to virtual host
ssh root@<ip address>
> <root password>
# install node.js with apt-get
sudo apt-get update
sudo apt-get install -y python-software-properties python g++ make nano
sudo add-apt-repository -y ppa:chris-lea/node.js
sudo apt-get update
sudo apt-get install nodejs
# check installation
node -v
npm -v
@DieterPSchnabel
Copy link

Great, worked for me on HostEurope Ubuntu

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