Skip to content

Instantly share code, notes, and snippets.

@kherge
Last active August 29, 2015 14:10
Show Gist options
  • Save kherge/0117441d5cdaf0b44585 to your computer and use it in GitHub Desktop.
Save kherge/0117441d5cdaf0b44585 to your computer and use it in GitHub Desktop.
Strips down Ubuntu Desktop to development essentials.

Make Dev Environment

This simple script will install tools I find necessary for my development environment in Ubuntu. It will also remove packages that I never use in that environment.

sudo apt-get install \
build-essential \
curl \
dkms \
git \
htop \
nethogs \
terminator \
tree \
unity-tweak-tool \
vim \
xfonts-terminus* && \
sudo apt-get purge \
libreoffice* \
account-plugin-* \
brasero* \
friends* \
rhythmbox* \
thunderbird*
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment