Skip to content

Instantly share code, notes, and snippets.

@rvause
Created May 3, 2011 11:55
Show Gist options
  • Save rvause/953206 to your computer and use it in GitHub Desktop.
Save rvause/953206 to your computer and use it in GitHub Desktop.
Things to do after downgrading to Ubuntu 10.10 (Maverick)
#!/usr/bin/env bash
sudo jockey-text -u
sudo jockey-text -e xorg:nvidia_current
sudo sed -i 's/gb.archive/eu.archive/g' /etc/apt/sources.list
# To Begin
sudo add-apt-repository ppa:chromium-daily/beta
sudo add-apt-repository ppa:nikolay-blohin/gnotran
sudo add-apt-repository ppa:chris-lea/node.js
sudo apt-key adv --keyserver keyserver.ubuntu.com --recv 7F0CEB10
sudo apt-add-repository "deb http://downloads-distro.mongodb.org/repo/debian-sysvinit dist 10gen"
sudo add-apt-repository "deb http://archive.canonical.com/ubuntu natty partner"
sudo apt-get -y update && sudo apt-get -y upgrade
# Gnome tweaks
gconftool-2 -s -t bool /desktop/gnome/interface/menus_have_icons true
gconftool-2 -s -t bool /desktop/gnome/interface/buttons_have_icons true
# Remove the fail
sudo apt-get -y autoremove gnome-games-common gbrainy
sudo apt-get -y autoremove evolution-common evolution-data-server evolution-plugins evolution-webcal evolution-indicator
sudo apt-get -y autoremove gwibber-service
sudo apt-get -y autoremove simple-scan
sudo apt-get -y autoremove ubuntuone-client
sudo apt-get -y autoremove --purge compiz*
# Install the win
sudo apt-get -y install fortunes
#echo "echo;fortune;echo" >> ~/.bashrc
sudo apt-get -y install chromium-browser
sudo apt-get -y install gnotran
sudo apt-get -y install hamster-applet shutter xchat terminator cheese
sudo apt-get -y install wine
sudo apt-get -y install htop vim
sudo apt-get -y install sun-java6-jre sun-java6-plugin
sudo apt-get -y install git-core bzr mercurial sqlite3
sudo apt-get -y install build-essential python-dev libjpeg62 libjpeg62-dev zlib1g zlib1g-dev curl
sudo apt-get -y install nodejs
sudo apt-get -y install mongodb-10gen
sudo apt-get -y install ssh-askpass ssh-askpass-gnome
# Plugins for mp3 playback and other media
sudo apt-get -y install gstreamer0.10-ffmpeg gstreamer0.10-fluendo-mp3 gstreamer0.10-plugins-ugly
sudo apt-get -y install flashplugin-nonfree
# Python stuff
sudo apt-get -y install python-setuptools
sudo easy_install pip
sudo pip install virtualenv virtualenvwrapper
#echo "source /usr/local/bin/virtualenvwrapper.sh" >> ~/.bashrc
#mkdir $HOME/.virtualenvs
# Cleanup
sudo apt-get autoremove && sudo apt-get clean all && sudo apt-get autoclean all
# Reminders
echo "***********************************************************************"
echo "Go and download Dropbox from https://www.dropbox.com/downloading "
echo "Go and install Wing IDE from http://wingware.com/downloads/wingide/4.0 "
echo "***********************************************************************"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment