Pen drives & ISOs

Soldato
Joined
2 May 2004
Posts
19,950
Hi,

Just wondered if there's any decent program that will allow me to 'burn' ISOs (and other image files if possible) to pen drive?

I haven't found any decent guide that will allow me to put an ISO onto a pen drive to install e.g. XP/Vista, or use tools such as Memtest86.

Thanks
Craig.
 
I don't think it can be done as the base formats are different. Pendrives use FAT/NTFS like a hard drive, optical media is on ISO9660 etc.

Very much depends on the application - there is no standard way. I have a bootable pendrive with a bunch of DOS utils on it such as Ghost and Memtest. It's also possible to create a Windows 7 install pendrive.
 
There are different ways to do it.

My favourite Swiss army knife, dd, can do it directly.


You can also just copy the files and then copy a boot sector. Works with the Vista / 7 installers.
 
Thanks for all the suggestions so far :)

I tried the instructions given in the link ricky1981 posted, however that seems to be Windows 7 specific, it seems it doesn't support other ISOs?

Just trying dd if=filename.iso of=/dev/sdb1 at the moment under CentOS, hopefully it works.

[Edit]
Just finished running the above command in CentOS. I'm getting "Missing operating system" when I boot from the pen drive though :(
 
Last edited:
Just finished running the above command in CentOS. I'm getting "Missing operating system" when I boot from the pen drive though :(

You need a Vista or Windows 7 boot sector. :p

I booted my Vista DVD and used bootsect.exe

Maybe there is a way to format the USB within Windows, such that it is automatically bootable?
 
Ah, I assumed dd copied the boot sector etc. as well.

You copied to sdb1. The MBR is on sdb, not sdb1. So that needs some boot code, too.

It's BIOS--->Master Boot Record--->Partition Boot Record

Don't forget to toggle sdb1's bootable flag.
 
Back
Top Bottom