Skip to content

Ubuntu 10.04 & 10.10 Install

ccope edited this page Sep 12, 2011 · 3 revisions

Revised installation instructions.

    1  mkdir Source
    2  cd Source
    3  wget http://nodejs.org/dist/node-v0.4.11.tar.gz
    4  tar -zxvf node-v0.4.11.tar.gz 
    5  cd node-v0.4.11/
    6  sudo apt-get install g++ libssl-dev git-core sqlite3 libsqlite3-dev python-setuptools
    7  ./configure
    8  make
    9  sudo make install
   10  cd ..
   11  wget https://github.com/isaacs/npm/tarball/v1.0.27
   12  tar xvf v1.0.27
   13  cd isaacs-npm*
   14  sudo make install
   15  cd ..
   16  git clone git://github.com/quartzjer/Locker.git
   17  cd Locker
   18  npm install
   19  sudo python setupEnv.py 
   20  node lockerd.js

It ran! Rejoice!

Clone this wiki locally