Skip to content

Instantly share code, notes, and snippets.

@eltimn
Created May 9, 2012 14:24
Show Gist options
  • Save eltimn/2644855 to your computer and use it in GitHub Desktop.
Save eltimn/2644855 to your computer and use it in GitHub Desktop.
New Install
#!/bin/sh
# Things to do after a fresh install
# Ubuntu 12.04 LTS
# Author : Tim Nelson <http://eltimn.com/>
# License : Apache 2.0
# update system
sudo apt-get update
sudo apt-get upgrade
echo "System Updated Successfully"
# proprietary codecs/libraries
sudo apt-get -y install ubuntu-restricted-extras libdvdread4
sudo /usr/share/doc/libdvdread4/install-css.sh
# multimedia stuff
sudo apt-get -y install easytag vlc
# unsettings
sudo add-apt-repository ppa:diesch/testing
sudo apt-get update
sudo apt-get -y install unsettings
# desktop tweak tools
sudo apt-get -y install gconf-editor compizconfig-settings-manager conky
# Java
#sudo apt-get purge openjdk*
# indicators
sudo apt-get -y install indicator-weather
# dev tools
sudo apt-get -y install ack-grep git xclip maven2 meld ack-grep curl parcellite
# vbox
sudo apt-get -y install virtualbox-ose virtualbox-guest-additions
# other apps
sudo apt-get -y install keepassx
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment