Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kentlangley/574656 to your computer and use it in GitHub Desktop.
Save kentlangley/574656 to your computer and use it in GitHub Desktop.
##Prepare the Server
apt-get update
apt-get upgrade
apt-get install build-essential
apt-get install zlib1g-dev
apt-get install uuid-dev
##Download, Build, make, make install - Ruby 1.9.2p0
cd /tmp
wget ftp://ftp.ruby-lang.org//pub/ruby/1.9/ruby-1.9.2-p0.tar.gz
tar -zvxf ruby-1.9.2-p0.tar.gz
cd ruby-1.9.2-p0
./configure
make
make install
## Download, Build, make, make install - ZeroMQ
cd /tmp
wget http://www.zeromq.org/local--files/area:download/zeromq-2.0.9.tar.gz
tar -zvxf zeromq-2.0.9.tar.gz
cd zeromq-2.0.9
./configure
make
make install
Copy link

ghost commented Sep 17, 2010

thanks!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment