Hi ripvanwinkle27,
If all else fails, and you determine that your BIOS does not allow you to boot from a USB flash drive (I'd recommend >2GB USB), there are two alternatives that might help.
The first and preferred way is to note the manufacturer of your motherboard, and visit the web site of the motherboard manufacturer. There, search for BIOS updates to your motherboard's firmware. If you are lucky the documentation on the motherboard will tell you whether or not the motherboard supports that feature.
You should be able to find out the manufacturer of your motherboard by issuing the following two commands from a Linux Live CD or an installed Linux:
$ sudo -i
# dmidecode | more
The first page of output should show the manufacturer and the motherboard model.
For example, when I run the dmidecode command on my computer:
root@ubuntu:~# dmidecode | more
# dmidecode 2.9
SMBIOS 2.3 present.
84 structures occupying 2898 bytes.
Table at 0x000FD3E0.
Handle 0x0000, DMI type 0, 20 bytes
BIOS Information
Vendor: Intel Corp. <- this is the manufacturer of my motherboard
Version: CV92510A.86A.0338.2004.1012.1817 <- this is the version of my motherboard
Note: the model of my motherboard is: D925XECV2
Release Date: 10/12/2004 <- this is the date of the BIOS firmware release that I have installed
Note: I have visited the Intel website and seached for firmware updates to my motherboard model and I have downloaded and burned the latest version firmware to CD, but have not yet followed the instructions to install it.
I would advise you to acquire the manufacturer's product guide for your motherboard - I got mine with my purchase from my computer's vendor from whom I bought it (PCsforeveryone.com).
The next approach, if the above one is not available, is to follow the procedure from pendrivelinux.com:
Use a Boot CD to Boot from USB Category.
Note: How to Create a USB Boot CD that can be used to boot a Xubuntu 9.10 USB flash drive on computers with a BIOS that does not natively support booting from USB. A Boot CD created via this process works by loading the Initial Ram Filesystem along with any USB drivers from the CD. Because the USB drivers are made available from the Boot CD, the system will then attempt to find, decompress and load the final Xubuntu squash filesystem and casper-rw persistence file (if it exists) from the USB flash drive.
Note: You do not need to use Xubuntu 9.10 - i.e. you could use Ubuntu 9.10 Live CD.
-- Tom