Created
August 31, 2012 20:56
-
-
Save dolph/3558879 to your computer and use it in GitHub Desktop.
Debian wheezy setup
This file contains hidden or 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
# add yourself as a sudo user | |
su | |
apt-get update | |
apt-get install -V -y sudo | |
# username ALL=(ALL:ALL) ALL | |
visudo | |
exit | |
sudo apt-get update | |
sudo apt-get install -V -y virtualbox-guest-x11 | |
# we need apt-add-repository | |
sudo apt-get install -V -y python-software-properties | |
# otherwise you'll get a package authentication warning for chrome | |
wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | sudo apt-key add - | |
sudo apt-add-repository 'deb http://dl.google.com/linux/deb/ stable non-free main' | |
sudo apt-get update | |
sudo apt-get install -V -y docky git python-dev python-virtualenv python-pip vim-gtk google-chrome-stable xchat zip unzip | |
sudo apt-get remove -V -y gimp libreoffice* | |
sudo apt-get autoremove | |
sudo apt-get upgrade -V -y |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment