|
|
|||||||||
|
|||||||||
|
|||||||||
| |
||
| |||||||||
![]() |
|
|
«
Previous Thread
|
Next Thread
»
|
Thread Tools | Search this Thread | Display Modes |
|
||||
|
we use acronis for all our imaging needs. you can simply take out the hdd, stick it in a machine, boot from the acronis live cd, then image the hdd from there.
__________________
How much net work could a network work, if a network could net work? |
|
||||
|
Sand Man,
So you are saying that my fears of the HDD being an OS/2 are unfounded and that by booting from the CD will remove the fear of dealing with Windows. Are the options for sector to sector or bit to bit available? |
|
||||
|
Is the disk FAT or HPFS (OS/2's filesystem)?
In the first case, you should be able to run it on any machine, if it's HPFS, it will also be possible, but you'll need to install the drivers on the windows machine. Have a look here to see how. Once you can read the disk, you can use anything you want to mirror it. An alternative setup would be to get a PCI RAID card and a second disk of similar size, and build a RAID 1 array. A proper RAID card should be able to do this for any old OS without drivers, regardless of OS (by hooking into Interrupts 13 and 19, iirc).
__________________
This is my sig. Is it not nifty? Itsacon's Sig v2. Click here =>
![]() Last edited by Itsacon : June 12th, 2008 at 02:38 AM. |
|
|||
|
When it comes to cloning operating systems there nothing easier, faster and better than using Linux Live CD.
Just download any one. It comes as an iso file. Burn the image on a CD and you are in business. If I have to recommend one then try Slax or Ubuntu. You can hook up the target disk as an internal disk, external disk, USB, firewire or eSata. This is the write-up Linux dd reads the binary pattern of the source hard disk and duplicates the information on the target disk. It is a 100% mirror image of the original. As no file is read so any operating system can be cloned. All you need is to get the target disk exactly the same size (exact number of sectors) or just larger. dd starts from the first sector and only terminates when the last sector has been exhausted. The cloning is done at a hardware level and whether the disk/partitions are mounted or not is immaterial. The whole operation involves just one line of command. Life doesn't get simpler or easier than that. It is absolutely free too and you actually can understand how it is done (if you read about it)! Last edited by saikee : June 13th, 2008 at 06:18 PM. |
|
|||
|
It is true that dd copies the empty space faithfully as it copies the real data but it runs at a hardware level with the maximum access speed.
On a Sata partition of say 100Gb the speed I recorded could exceed 70Mb/s. Cloning a 500Gb took 2.26 hours at 61.4Mb/s. Cloning software like Ghost also copies the empty space too and can take longer. If one of the disks is attached to a USB connection the speed can drop below 20Mb/s. dd has one important asset that no operating system copying function can do. It copies the boot sector plus the non-file section of the partition. Thus the clone boots exactly like the original. Most file copying commands cannot access the boot sector of the filing indexing section of the partition. dd only copies the sectors of the hard disk and as such all PC operating systems can be successfully cloned. dd doesn't know what the operating system inside, how many of them or whether the disk is good or bad. It simply reproduce a mirror image of it. One should not look at dd as an all rounder command because it never is one. It is one of the most basic Bash commands that allow a user to get even a single byte out of a hard disk at any location. One can however use it to good effect for making backups. XP and Vista can be backup/cloned by dd without the need of a re-activation. |
|