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.
Last active
August 29, 2015 14:10
-
-
Save kherge/0117441d5cdaf0b44585 to your computer and use it in GitHub Desktop.
Strips down Ubuntu Desktop to development essentials.
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 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