Skip to content

Instantly share code, notes, and snippets.

@granolocks
Created April 4, 2012 15:24
Show Gist options
  • Select an option

  • Save granolocks/2302694 to your computer and use it in GitHub Desktop.

Select an option

Save granolocks/2302694 to your computer and use it in GitHub Desktop.
Ubuntu 11.10 install notes
# Ubuntu 11.10 Setup Notes:
# Note, this isn't really a script, i just called it .sh to get syntax highlighting
# prep
sudo apt-get update
# setup git and ssh
# Add key to github.
ssh-keygen
# basic packages
sudo apt-get install git-core tmux vim nmap wireshark tshark meld wget finch moc gnome-do ubuntu-restricted-extras mysql-server
# install ruby dependencies:
sudo apt-get install build-essential curl libmysqlclient16-dev nodejs
sudo bash -s stable < <(curl -s https://raw.github.com/wayneeseguin/rvm/master/binscripts/rvm-installer)
# somehow rvm knew who i was... creapy...
umask g+w
source /etc/profile.d/rvm.sh
rvm requirements
sudo /usr/bin/apt-get 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
rvm reload
sudo chown -R granolocks:granolocks /usr/local/rvm
# install default ruby :)
rvm install ruby-1.9.2-p290
source "/usr/local/rvm/scripts/rvm"
rvm --default use ruby-1.9.2-p290
gem install bundler pry therubyracer
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment