Skip to content

Instantly share code, notes, and snippets.

@edomaru
Last active August 29, 2015 14:21
Show Gist options
  • Save edomaru/4de21a3e20e557f2ede5 to your computer and use it in GitHub Desktop.
Save edomaru/4de21a3e20e557f2ede5 to your computer and use it in GitHub Desktop.
Install Ubuntu 2.2 on Ubuntu 14.04 LTS

#Install dependencies

sudo apt-get update
sudo apt-get install git-core curl zlib1g-dev build-essential libssl-dev libreadline-dev libyaml-dev libsqlite3-dev sqlite3 libxml2-dev libxslt1-dev libcurl4-openssl-dev python-software-properties libffi-dev

#Install Ruby with rbenv

cd
git clone git://github.com/sstephenson/rbenv.git .rbenv
echo 'export PATH="$HOME/.rbenv/bin:$PATH"' >> ~/.bashrc
echo 'eval "$(rbenv init -)"' >> ~/.bashrc
exec $SHELL

git clone git://github.com/sstephenson/ruby-build.git ~/.rbenv/plugins/ruby-build
echo 'export PATH="$HOME/.rbenv/plugins/ruby-build/bin:$PATH"' >> ~/.bashrc
exec $SHELL

git clone https://github.com/sstephenson/rbenv-gem-rehash.git ~/.rbenv/plugins/rbenv-gem-rehash

rbenv install 2.2.2
rbenv global 2.2.2
ruby -v
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment