Last active
August 29, 2015 14:09
-
-
Save wholroyd/14a1d071497f10e77674 to your computer and use it in GitHub Desktop.
Ubuntu 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 Oracle VirtualBox Repository | |
wget -q -O - http://download.virtualbox.org/virtualbox/debian/oracle_vbox.asc | sudo apt-key add - | |
sudo sh -c 'echo "deb http://download.virtualbox.org/virtualbox/debian trusty non-free contrib" >> /etc/apt/sources.list.d/virtualbox.org.list' | |
# Add Google Chrome Repository | |
wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | sudo apt-key add - | |
sudo sh -c 'echo "deb http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google-chrome.list' | |
# Add Spotify Repository | |
sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 94558F59 | |
sudo sh -c 'echo "deb http://repository.spotify.com stable non-free" >> /etc/apt/sources.list.d/spotify.list' | |
# Add Pidgin Repository | |
sudo add-apt-repository ppa:pidgin-developers/ppa | |
sudo apt-get update | |
sudo apt-get install pidgin | |
sudo apt-get install google-chrome-stable | |
sudo apt-get install virtualbox-4.3 | |
sudo apt-get remove libreoffice* -y | |
sudo apt-get remove firefox* -y |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment