Created
March 28, 2013 02:32
-
-
Save ruzz311/5260065 to your computer and use it in GitHub Desktop.
Some things I installed to get a nodejs app server running on a2Hosting's CloudVM (ubuntu)
This file contains hidden or 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
sudo apt-get install git; | |
sudo apt-get install python g++ make; | |
sudo apt-get install python-software-properties; | |
sudo apt-get install g++ curl libssl-dev apache2-utils; | |
sudo apt-get update; | |
sudo add-apt-repository ppa:chris-lea/node.js; | |
sudo apt-get update; | |
sudo apt-get install nodejs; | |
# Sources | |
# | |
# https://help.ubuntu.com/community/Repositories/CommandLine#Adding_Launchpad_PPA_Repositories | |
# https://github.com/joyent/node/wiki/Installing-Node.js-via-package-manager#ubuntu | |
# | |
# I didn't really do this, but it's helpful: http://oodavid.tumblr.com/post/15090798307/how-to-install-node-js-on-linux |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment