-
Notifications
You must be signed in to change notification settings - Fork 699
v0.2.1 Build Recipe (Ubuntu 11.04)
msmathers edited this page Oct 1, 2011
·
2 revisions
The following recipe was used to build a Log.io environment on a fresh Ubuntu 11.04 install, using node.js v0.4.12:
-
Install node.js dependencies
sudo apt-get install g++ make git libssl-dev
-
Download, compile node.js source
mkdir ~/downloads cd downloads wget "http://nodejs.org/dist/node-v0.4.12.tar.gz" tar -xzvf node-v0.4.12.tar.gz cd node-v0.4.12/ ./configure make sudo make install
-
Install NPM
curl http://npmjs.org/install.sh | sudo sh
-
Install log.io
sudo npm config set unsafe-perm true sudo npm install -g --prefix=/usr/local log.io
-
Launch server and harvester
sudo log.io server start sudo log.io harvester start