Skip to content

Instantly share code, notes, and snippets.

@rtacconi
Created November 29, 2011 14:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rtacconi/1404979 to your computer and use it in GitHub Desktop.
Save rtacconi/1404979 to your computer and use it in GitHub Desktop.
Instal RVM on Ubuntu server (10.04) - system wide
#!/bin/bash
apt-get update
apt-get -y install curl git-core
bash < <(curl -s https://raw.github.com/wayneeseguin/rvm/master/binscripts/rvm-installer )
apt-get -y install build-essential openssl libreadline6 libreadline6-dev curl git-core zlib1g zlib1g-dev libssl-dev libyaml-dev libsqlite3-0 libsqlite3-dev sqlite3 libxml2-dev libxslt-dev autoconf libc6-dev ncurses-dev automake libtool bison subversion
source /root/.bashrc
rvm install 1.9.3
rvm use 1.9.3 --default
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment