## This script is useful for automatically installing a number of useful packages ## on an out-of-the-box Ubuntu system. Before you run this, make sure you have all ## the "extra" repositories enabled in /etc/apt/sources.list to get the full effect. ## ## This script was written on Ubuntu Edgy Eft (6.10), which is based on the ## unstable branch of Debian. ## ## Author: Nathan Mann ## Date: Monday, November 6, 2006 ## Kernel-version: 2.6.17-10-386 #!/bin/bash echo "####################################################" echo "# Ubuntu Silent Setup Wizard #" echo "# Author: Nathan Mann #" echo "# #" echo "# Shoutouts and grats to Michael S. Bryant for #" echo "# teaching me how to use Linux, Jason for letting #" echo "# me use his computer to do this, and Anonymous #" echo "# for editing help. (b^_^)b #" echo "# #" echo "# JESUS CHRIST, ITS A LION, GET IN THE CAR #" echo "####################################################" ## Prepare the computer for packages echo "It begins. Preparing for new packages. . . " apt-get -yf install > /dev/null apt-get -y upgrade > /dev/null echo "Finished." ## Install development packages echo "Installing development packages. . . " apt-get -y install anjuta eclipse alien sun-java5-jre sun-java5-plugin > /dev/null echo "Finished." ## Install multimedia packages echo "Installing multimedia packages. . . " apt-get -y install vlc vlc-plugin-* mozilla-plugin-vlc avahi-daemon avahi-utils xmms xmms-skins > /dev/null apt-get -y install streamtuner streamripper mozilla-mplayer > /dev/null echo "Finished." ## Install CD and DVD tools echo "Installing CD and DVD programs. . . " apt-get -y install cdrdao dvdrip acidrip k3b libk3b2-mp3 vcdimager subtitleripper > /dev/null echo "Finished." ## Install network tools echo "Installing network tools. . . " apt-get -y install ethereal wireshark openssh-server > /dev/null echo "Finished." ## Install miscellaneous system tools echo "Installing miscellaneous system tools. . . " apt-get -y install gparted qtparted > /dev/null echo "Finished." ## Install miscellaneous other things echo "Installing other useful things. . . " apt-get -y install gnucash gftp azureus planetpenguin-racer planetpenguin-racer-data planetpenguin-racer-extras scorched3d stellarium > /dev/null apt-get -y install flashplugin-nonfree acroread mozilla-acroread acroread-plugins rar unrar > /dev/null echo "Finished."