|
well i cant guarantee it will work, but get a harddisk from from the machine you wanna install on, now assuming that your disk is /dev/hda and the empty disk is /dev/hdb then dd if=/dev/hda of=/dev/hdb bs=1024k should produce an exact copy of your disk on the other one. the other technique though slightly longer is(i think) guarenteed to work, as before install the other disk, using fdisk and mkfs set up the partitions correctly then mount them. then you can do something like tar cv /usr/* | tar xvC /path/to/new/usr for each partition.
|