#!/bin/bash # Script to load a standard set of programs # Last updated 12th July 2009 echo 'This script will load my standard set of programs into Ubuntu Jaunty Jackalope' echo ' The Medibuntu repository should only be installed once' echo 'Do you want to install the Medibuntu Repository? (y/n)' read yn if [ "$yn" = "y" ] ; then echo 'Loading Medibuntu for Jaunty' sudo wget http://www.medibuntu.org/sources.list.d/jaunty.list -O /etc/apt/sources.list.d/medibuntu.list sudo apt-get update && sudo apt-get install medibuntu-keyring && sudo apt-get update fi echo 'Do you want to load latest Linux headers? (y/n)' read yn if [ "$yn" = "y" ] ; then sudo apt-get install linux-headers-`uname -r` fi echo 'Do you want to load driver building utilities? (y/n)' read yn if [ "$yn" = "y" ] ; then sudo apt-get install build-essential subversion compizconfig-settings-manager fi echo 'Do you want to install the Partition Manager? (y/n)' read yn if [ "$yn" = "y" ] ; then sudo apt-get install gparted fi echo 'Do you want to install the Start Up Manager? (y/n)' read yn if [ "$yn" = "y" ] ; then sudo apt-get install startupmanager fi echo 'Do you want to install Thunderbird? (y/n)' read yn if [ "$yn" = "y" ] ; then sudo apt-get install thunderbird fi echo 'Do you want to install Samba? (y/n)' read yn if [ "$yn" = "y" ] ; then sudo apt-get install samba system-config-samba fi echo 'Do you want to install Wine and Associated fonts etc (y/n)' read yn if [ "$yn" = "y" ] ; then sudo apt-get install wine msttcorefonts fi echo 'Do you want to install Media support? (y/n)' read yn if [ "$yn" = "y" ] ; then sudo apt-get install w32codecs and ubuntu-restricted-extras fi echo 'Do you want to install DVD support? (y/n)' read yn if [ "$yn" = "y" ] ; then sudo apt-get install gxine and libxine1-all-plugins xine-ui libdvdcss2 libdvdread4 libdvdnav4 fi echo 'Do you want to install UDF CD support for Windoz compatibility? (y/n)' read yn if [ "$yn" = "y" ] ; then sudo apt-get install libudf0 libudf-dev udftools fi echo 'Do you want to install Sun Java 6 support? (y/n)' read yn if [ "$yn" = "y" ] ; then sudo apt-get install sun-java6-bin sun-java6-jre and sun-java6-plugin fi echo 'Do you want to install Flash support? (y/n)' read yn if [ "$yn" = "y" ] ; then sudo apt-get install flashplugin-nonfree fi echo 'Do you want to install the K3b CD/DVD writer support? (y/n)' read yn if [ "$yn" = "y" ] ; then sudo apt-get install k3b libk3b3-extracodecs fi echo 'Do you want to install Unison support? (y/n)' read yn if [ "$yn" = "y" ] ; then sudo apt-get install unison-gtk ssh winbind fi echo 'Do you want to install Gnome-PPP and the Netspeed Applet? (y/n)' read yn if [ "$yn" = "y" ] ; then sudo apt-get install gnome-ppp netspeed fi echo 'Do you want to install Skype and Cheese? (y/n)' read yn if [ "$yn" = "y" ] ; then sudo apt-get install skype cheese fi echo 'Do you want to install Web Support? (y/n)' read yn if [ "$yn" = "y" ] ; then sudo apt-get install kompozer gftp-gtk fi echo 'Do you want to install Trash Command Line Support? (y/n)' read yn if [ "$yn" = "y" ] ; then sudo apt-get install trash-cli fi echo 'Do you want to install Synaptic Touchpad Support (laptops only)? (y/n)' read yn if [ "$yn" = "y" ] ; then sudo apt-get install gsysnaptics fi echo 'Do you want to install Mouseemu touchpad support (Wind only)? (y/n)' read yn if [ "$yn" = "y" ] ; then sudo apt-get install mouseemu fi echo 'Hit return to finish' read