Clone bootable USB drives

14

5

I want to clone bootable USB drives (Windows 7 installation with image file). What's the fastest and easiest way to do this?

Sally

Posted 2011-02-17T18:33:16.590

Reputation:

Answers

5

In Linux you can use just

dd if=/dev/sdb of=/dev/sdc

(assuming that sdb is source and sdc is destination usb memory)

In Windows you can check out for example this tutorial.

Olli

Posted 2011-02-17T18:33:16.590

Reputation: 6 704

Bear in mind that this will also copy all the empty space in the source drive, and so can take longer. I also expect it fails if the destination drive isn't at least as big as the source drive. – Edward Falk – 2016-09-23T18:03:32.607

5

Late to the party, but ImageUSB is also a very good option. It clones the drive exactly, including the MBR. Note that you want both drives to have about the same amount of space, as if you write a 4GB image to an 8GB pendrive, you'll only be able to access the first 4GB until you reformat.

http://www.osforensics.com/tools/write-usb-images.html

Ben Elgar

Posted 2011-02-17T18:33:16.590

Reputation: 163

3

There is an windows version of dd available, too. If you have some knowledge of the commandline it is easy to use. dd for Windows

If you don't understand the manual i could try to explain it for you. It is free, fast small and simple. It could although be placed in an BartPE image.

Darokthar

Posted 2011-02-17T18:33:16.590

Reputation: 1 361

I got this working and copied my UBCD4WIN USB drive to a new drive, and it boots. Only catch was I had to mess around in diskpart to get the destination drive to be writable by dd.exe. I followed the instructions here, but I'm not sure the format step is really necessary: http://www.mydellmini.com/forum/dell-mini-9-os-x-discussion/14798-dd-exe-access-denied-windows-7-a.html

– Vimes – 2012-09-02T05:16:28.827

1

I played around with dd and the windows equivalent, but the copy is a true image inasmuch as a 2GB stick will make a 2GB image/copy, regardless of the size of the actual partitions, and this can take a long time, especially with big sticks.

In the end, I used Clonezilla to make a partition backup to a local hard disk and these can be restored 'on demand' to new sticks with the added bonus that the partitions can be resized on the fly too.

This approach may be useful if you want to make a master image and then duplicate it several times but it's not a solution for as-and-when, pop in a stick and copy it.

Linker3000

Posted 2011-02-17T18:33:16.590

Reputation: 25 670

0

Clonezilla is a convenient liveCD to use for those who do not normally run Linux or some other flavour of *nix. Booting off of a liveCD your USB devices will more than likely be realized and you will be able to essentially do the same thing as you would with 'dd' in a perhaps more friendly form.

slashdot

Posted 2011-02-17T18:33:16.590

Reputation: 136