Last active
December 28, 2015 23:19
-
-
Save andineck/7577975 to your computer and use it in GitHub Desktop.
node.js installation on ubuntu virtual hosts like hosteurope.de
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Great, worked for me on HostEurope Ubuntu