i cannot really judge the cfg file because i dont have a USB stick to try and see how unetbootin places the files on the stick
instead of unetbootin, try to manually do everything which is easy and straightforward
to make it easier to test your usb, install qemu first
and
- Code: Select all
qemu /dev/sdd
which will emulate the boot up process and see what would happen without actually booting your computer. however, i found that sometimes qemu does not behave like the real thing.
you can manually create the bootloader:
GRUB2 Bootloader Example
Grub2 USB Flash Drive Install using the Ubuntu Live CD:
1. Boot from your Live Ubuntu Linux CD
2. Once booted, insert your USB Flash Drive
3. Open a terminal and type sudo su
4. Type fdisk -l (and note which device is your USB)
5. Type mkdir /mnt/USB && mount /dev/sdx1 /mnt/USB (replacing x with your actual usb device)
6. Type grub-install --force --no-floppy --root-directory=/mnt/USB /dev/sdx (replacing x with your actual USB device)
7. Type cd /mnt/USB/boot/grub
8. Type wget pendrivelinux.com/downloads/grub.cfg
9. Type df (and locate where cdrom is mounted I.E./dev/sr0)
10. Type dd if=/dev/sr0 of=/mnt/USB/ubuntu.iso (replacing sr0 with the device found in step 9)
11. Remove your Live CD and reboot your PC, setting your BIOS or Boot Menu to boot from the USB device.
source:
http://www.pendrivelinux.com/install-gr ... ntu-linux/You do not have to use the
- Code: Select all
dd if=/... of=/...
if you downloaded the iso image of the live CD directly from the net. You just copy it to the usb stick
The first 5 steps are not necessary since you have already formatted your usb stick and mounted it. My computer auto-mounts my usb stick and I use gparted to format it.