Skip to content

Instantly share code, notes, and snippets.

View spadin's full-sized avatar
😃

Sandro Padin spadin

😃
View GitHub Profile
@spadin
spadin / install-notes.md
Created August 30, 2011 03:28
Installation notes for installing nodejs, npm and redis on a fresh Ubuntu 11.04 server. Worked on Rackspace Cloud Servers.

Basic Install of Node.js from scratch on Ubuntu 11.04 Notes

$ apt-get update
$ apt-get install git-core curl build-essential openssl libssl-dev
$ git clone https://github.com/joyent/node.git && cd node
$ make
$ sudo make install
$ curl http://npmjs.org/install.sh | sudo sh

Cleanup node install files: