THANKS! That seems to be working just fine. One of the programs I want to install requires having universe enabled and I'd like to automate that as well. According to this page (
http://www.ubuntugeek.com/how-to-enable-the-universe-and-multiverse-repositories-in-ubuntu-804-hardy.html) the only way to do that in the command line is by editing the sources.list file. Could I automate that by having my script take a copy of a sources.list file that already has the universe/multiverse in it and copying it over the top of the existing system file? If so I'm not exactly sure on how to do that as the script and file itself will be stored on a partition on the same external USB drive I'm booting from. I'm not even sure how to get into it from the command line. Below is what I'm trying to do but is probably wrong. I'm not going to try and run it for fear of actually screwing something up even though it's a live disk.
#!/bin/bash
cp -f /whatever the usb is/sources.list /etc/apt/sources.list
sudo apt-get update
sudo apt-get -y install adobe-flashplugin
sudo apt-get -y install irssi
sudo apt-get -y install pidgin
sudo apt-get -y install wine1.2
Also, is there a way to automate tzdata to adjust the time to a certain time zone w/o having to go in and select through the menu and stuff?