How can we clone 100 hard drives with a normal PC?
October 28, 2005 8:54 AM
Subscribe
How can we clone 100 hard drives with a normal PC?
We have a need to copy entire hard drives (cloning) ... We have been using a Logicube Omniclone 2u, which is a device that can clone 2 drives from one "master". We will be cloning about 100 of the same drive for embedded systems.
Unfortunately, this device is no longer working properly and we cannot afford to buy another (cost is around $1800 USD).
These are just normal 40G, 7200 RPM, IDE drives (all with the same geometry), so it occurred to me that we could probably use a regular desktop PC to do this cloning. Unfortunately, I don't know how to do it because the OS on these hard drives is not a windows system (it's an embedded Unix varient called QNX).
Any ideas?
posted by jlstitt to computers & internet (11 comments total)
Or use Knoppix + ssh + the dd command.
Basically, you take you "master" computer and boot it from a knoppix disk.
Put one of the hardrives in another computer and boot this "clone" computer from a Knoppix disk as well.
Then copy the hardrive from the master to the clone with something like this:
#dd if=/dev/hda bs=10k | ssh $TARGET_IPADDRESS dd of=/dev/hda bs=10k
posted by gus at 9:10 AM on October 28, 2005