| It's easy to create a bootable Linux USB drive with UNetbootin, and I've heard that you can create a bootable Windows USB drive, but I don't know about tools to make a Windows installation ISO into a bootable USB drive. However, it should be possible from your FC11 system. What you should try:
1. Run fdisk against the usb drive and create a DOS (w96 FAT32) partition. Make it bootable.
2. Create a vfat file system on the usb partition.
3. Mount the usb drive partition: sudo mount /dev/sdx1 usb-mnt-point
4. Mount the iso image: sudo mount -o loop filename.iso iso-mnt-point
5. Copy the contents of the iso image to the usb partition: cp -rv iso-mnt-point usb-mnt-point
6. Reboot with the USB drive your boot device.
I don't know if this will work, but it's probably worth trying.
__________________
Sometimes, real fast is almost as good as real time.
|