Skip to content

Instantly share code, notes, and snippets.

@ngpestelos
Last active December 14, 2015 18:09
Show Gist options
  • Save ngpestelos/5127211 to your computer and use it in GitHub Desktop.
Save ngpestelos/5127211 to your computer and use it in GitHub Desktop.
install common packages for development
#!/bin/sh
apt-get -y update
apt-get -y upgrade
apt-get -y install linux-headers-$(uname -r) build-essential
apt-get -y install zlib1g-dev
apt-get -y install libssl-dev
apt-get -y install libreadline-gplv2-dev
apt-get -y install libyaml-dev
apt-get -y install libcurl4-openssl-dev
apt-get -y install libpcre3-dev
apt-get -y install libsqlite3-dev
apt-get -y install libv8-dev
apt-get -y install libpq-dev
apt-get -y install libxslt-dev
apt-get -y install vim
apt-get -y install tmux
apt-get -y install git-core
apt-get -y install curl
apt-get -y install unzip
apt-get -y install autoconf
apt-get -y install ack
apt-get -y install tree
apt-get -y install zsh zsh-dev zsh-doc
apt-get -y install nfs-common
apt-get clean
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment