Created
September 7, 2011 18:36
-
-
Save thisivan/1201342 to your computer and use it in GitHub Desktop.
Install Ubuntu 11.04 Desktop (amd64)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Update to the latest version | |
sudo apt-get update && sudo apt-get upgrade && sudo shutdown -r now | |
# Install Chromium | |
sudo apt-add-repository ppa:chromium-daily/dev | |
sudo apt-get update && sudo apt-get install chromium-browser | |
# Install basic tools | |
sudo apt-get install build-essential vim-nox curl git-core subversion openssh-server | |
# Install RVM | |
bash < <(curl -s https://rvm.beginrescueend.com/install/rvm) | |
# Install MRI, REE dependencies | |
sudo apt-get install build-essential bison 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 | |
# Install rmagick dependencies | |
sudo apt-get install libdjvulibre-dev libjpeg-dev libtiff-dev libwmf-dev libmagickcore-dev libmagickwand-dev libmagick++-dev | |
# MySQL Server/Dependencies | |
sudo apt-get install mysql-server libmysqlclient-dev libmysql-ruby mysql-admin | |
# To be continued... as I figure out more... |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment