I copied my windows 7 cd to a ISO and trying to source the image onto my USB drive from OSX. So far it doesn't seem like it's possible with disk utility. Is there something else I can do to make this work?

link|improve this question

0% accept rate
feedback

1 Answer

Of course, the command line is always there to help.

  • Insert the USB flash drive and run the command diskutil list to find out the disk name, we'll use /dev/disk1 as an example

  • Now unmount the disk using diskutil unmoundDisk /dev/disk1

  • Now we are ready to copy the ISO to the device:

dd if=/path/to/Win7.iso of=/dev/disk1 bs=8192

Give your USB stick a try :)

link|improve this answer
Awesome, I'll try this thank you. How do I mount it though? I think you missed that... I might be confused on terminology. Don't you have to mount to copy it? Also what about NTFS? – user29336 Feb 12 '11 at 3:03
If the disk is preformatted as NTFS it should still be able to read/write to it. You do not have to mount it as you are writing to the device. – John T Feb 12 '11 at 4:07
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.