Last active
December 25, 2015 11:49
-
-
Save pungoyal/6971304 to your computer and use it in GitHub Desktop.
dev box setup
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 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