You're probably right about the USB not working correctly. The Startup Disk Creator program has a terrible reputation of being really bad at making working USBs.
The method I use to create my live usbs has worked %100 of time for me. It may be a little bit more intimidating if you are not familiar with the Terminal. It really isn't that complicated though.
My method uses the terminal command dd
to write the iso to the USB. First, you need to have a Terminal open. You need to find the name that Ubuntu has given for the USB so you can tell dd
to write to it.
sudo fdisk -l
The terminal will ask for your password, then it will show a lot of information. You want to find the device that has one or two partitions. It will probably be either sdb or sdc (sda is probably your hard drive).
After you are sure that you found the correct name of the usb you can run the dd
to write the iso to it. You can change "Downloads" in the command to the directory you saved the ido file in. You must change the "sdx" to the device name you found using the previous command (don't use the numbers).
Please be careful! Using this command incorrectly can destroy the data on your computer or any device connected to it!
sudo dd if=~/Downloads/ubuntu-13.10-desktop-amd64.iso of=/dev/sdx oflag=direct bs=1048576