Skip to content

Instantly share code, notes, and snippets.

@pungoyal
Last active December 25, 2015 11:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save pungoyal/6971304 to your computer and use it in GitHub Desktop.
Save pungoyal/6971304 to your computer and use it in GitHub Desktop.
dev box setup
sudo apt-get curl install htop screen aptitude -y
# build essentials
sudo aptitude install vim zlib1g-dev libssl-dev openssl libreadline-dev sqlite3 libsqlite3-dev libxslt-dev libxml2-dev zsh git -y
# zsh
curl https://raw.github.com/robbyrussell/oh-my-zsh/master/tools/install.sh | sh
sudo chsh -s `which zsh`
# rbenv
git clone https://github.com/sstephenson/rbenv.git ~/.rbenv
echo 'export PATH="$HOME/.rbenv/bin:$PATH"' >> ~/.zshrc
echo 'eval "$(rbenv init -)"' >> ~/.zshrc
git clone https://github.com/sstephenson/ruby-build.git ~/.rbenv/plugins/ruby-build
# ruby 2.0.0-p247
rbenv install 2.0.0-p247
rbenv global 2.0.0-p247
# get and set monaco font
mkdir ~/.fonts
cd ~/.fonts
sudo wget http://www.gringod.com/wp-upload/software/Fonts/Monaco_Linux.ttf
mkfontscale
mkfontdir
fc-cache -fv ~/.fonts
# docker
# read http://docs.docker.io/en/latest/installation/ubuntulinux/#ubuntu-raring-13-04-64-bit
sudo usermod -a -G docker `whoami`
# skype
# sublime
# java
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment