Skip to content

Instantly share code, notes, and snippets.

@valllllll2000
Last active November 25, 2016 10:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save valllllll2000/8943810 to your computer and use it in GitHub Desktop.
Save valllllll2000/8943810 to your computer and use it in GitHub Desktop.
Post Ubuntu Installation
#!/bin/sh
#ubunut 13.04 or 12.04
#This is my personal script tht I use after installation
#Please before running, read through to make sure this is what you want
sudo apt-get install synaptic
#remove shopping lenses
sudo apt-get autoremove unity-lens-shopping
sudo apt-get autoremove unity-lens-music
sudo apt-get autoremove unity-lens-photos
sudo apt-get autoremove unity-lens-gwibber
sudo apt-get autoremove unity-lens-video
#remove ubuntu one -> !!!!ubuntu one is no longer present in 14.04
killall ubuntuone-login ubuntuone-preferences ubuntuone-syncdaemon
sudo rm -rf ~/.local/share/ubuntuone
rm -rf ~/.cache/ubuntuone
rm -rf ~/.config/ubuntuone
mv ~/Ubuntu\ One/ ~/UbuntuOne_old/``
sudo apt-get purge ubuntuone-client python-ubuntuone-storage*
#medibuntu has been discontinued...
#sudo -E wget --output-document=/etc/apt/sources.list.d/medibuntu.list http://www.medibuntu.org/sources.list.d/$(lsb_release -cs).list && sudo apt-get --quiet update && sudo apt-get --yes --quiet --allow-unauthenticated install medibuntu-keyring && sudo apt-get --quiet update
#sudo apt-get install app-install-data-medibuntu apport-hooks-medibuntu
#wine
sudo apt-get autoremove wine --purge
sudo rm -rf .wine
sudo add-apt-repository ppa:ubuntu-wine/ppa
sudo apt-get update && sudo apt-get install wine
winecfg
#other usefull software
sudo apt-get install gimp skype vlc ubuntu-restricted-extras filezilla
#formats
sudo apt-get install gxine mencoder icedax tagtool easytag id3tool lame nautilus-script-audio-convert libmad0 mpg321
sudo apt-get install libdvdcss2 && sudo /usr/share/doc/libdvdread4/./install-css.sh
#archive management
sudo apt-get install unace unrar zip unzip p7zip-full p7zip-rar sharutils rar uudeview mpack arj cabextract file-roller
#quick resize images within nautilus
sudo apt-get install nautilus-image-converter
#java7
sudo apt-get purge openjdk*
sudo add-apt-repository ppa:webupd8team/java
sudo apt-get update
sudo apt-get install oracle-java7-installer
#sudo apt-get remove oracle-java7-installer to remove
#development
sudo apt-get install git ant
sudo apt-get clean
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment