Created
November 6, 2012 18:30
-
-
Save JiriChara/4026567 to your computer and use it in GitHub Desktop.
Ubuntu 12.04 Install
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
sudo apt-get update | |
sudo apt-get upgrade | |
sudo reboot | |
sudo apt-get install nvidia-current | |
sudo reboot | |
sudo apt-get install ubuntu-restricted-extras | |
sudo apt-get install mercurial | |
hg clone https://vim.googlecode.com/hg/ ~/vim | |
cd ~/vim/src | |
sudo apt-get install ncurses-term | |
sudo apt-get install libncurses5-dev libgnome2-dev libgnomeui-dev libgtk2.0-dev libatk1.0-dev libbonoboui2-dev libcairo2-dev libx11-dev libxpm-dev libxt-dev | |
./configure --enable-gui=gnome2 --with-features=huge --enable-rubyinterp | |
make | |
# get a beer :-) | |
sudo make install | |
cd | |
rm -rf ~/vim | |
vim --version | |
sudo apt-get install curl | |
sudo apt-get install openssh-client openssh-server | |
mkdir ~/bin | |
curl -L https://get.rvm.io | bash -s stable --ruby | |
# restart terminal | |
sudo apt-get install build-essential openssl libreadline6 libreadline6-dev curl git-core zlib1g zlib1g-dev libssl-dev libyaml-dev libsqlite3-dev sqlite3 libxml2-dev libxslt-dev autoconf libc6-dev ncurses-dev automake libtool bison subversion pkg-config | |
rvm install 1.9.3 | |
git clone git://github.com/joyent/node.git ~/node | |
cd ~/node | |
sudo apt-get install build-essential openssl libssl-dev | |
git checkout v0.6.18 | |
./configure | |
make | |
sudo make install | |
cd | |
rm -rf ~/node | |
# restart term | |
curl https://npmjs.org/install.sh | sudo sh | |
npm -v | |
node -v | |
sudo npm install -g coffee-script | |
coffee -v | |
curl -sL https://github.com/djl/vcprompt/raw/master/bin/vcprompt > ~/bin/vcprompt | |
chmod 755 ~/bin/vcprompt | |
sudo apt-get install xclip | |
# ssh key setup - add it to github | |
git clone [email protected]:JiriChara/dotfiles.git ~/bin/dotfiles | |
cd ~/bin/dotfiles/ | |
rake install | |
cd; sudo apt-get install zsh | |
chsh -s /bin/zsh | |
# disable wifi led blinking on HP 8540w | |
echo 'options iwifi led_mode=1' | sudo tee -a /etc/modprobe.d/wlan.conf | |
sudo apt-get install libqt4-dev libqtwebkit-dev | |
sudo apt-get install mysql-server mysql-client libmysqlclient-dev |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment