Link to home
Start Free TrialLog in
Avatar of abpdk
abpdkFlag for Denmark

asked on

Ntfsclone disk to disk

Hi

Is it at all possible to use ntfsclone to clone an NTFS partition directly from one disk to another and if so, how?

//abpdk
Avatar of Luxana
Luxana
Flag of Australia image

do you need use only ntfsclone ? ntfsclone restore a clone image to its original partition only. But not sure maybe there is a way how to clone it to non-original partition.


When I need to clone some disk or partitions I use ghost for it. You need to just boot from floppy.

http://service1.symantec.com/SUPPORT/ghost.nsf/docid/2001092610013625?Open&src=&docid=2000033111503625&nsf=ghost.nsf&view=docid&dtype=&prod=&ver=&osv=&osv_lvl=
Avatar of Gns
Gns

If you'd like a lowcost, but a bit experimental when it comes to NTFS, alternative, look at http://www.partimage.org/
Note the caveats about NTFS.

-- Glenn
Hm, sorry read to fast...
Well, have you tried combining the "-o -" thing with "ssh host ’cat ntfs.img.bz2’ | bunzip2 | dd of=/dev/hda1 bs=8192" restoration?
Would perhaps give something like
ntfsclone -o - /dev/hda1 |  dd of=/dev/hdb1 bs=8192
... assuming that you've created an exact "replica" of the hda1 partition on hdb1, of course.

If you then expect to be able to boot from hdb1 mounted as hda1 in another computer, then youneed fix the mbr too (just copying with dd is perhaps a bad idea if the disks don't match exactly geometry and partition-wise) so best use Recovery Console booted from the windoze install media and run fixmbr for that (if it's "moved around" you might need fixboot too).

So ... perhaps the simple answer is "no":-)

-- Glenn
Avatar of abpdk

ASKER

I don't have to use ntfsclone,but the idea was to do this with freeware and ntfsclone sounded like a good option. I've heard good thinks about Ghost, but it being a Norton product most likely makes it far from free ;)

The disk's in question aren't mine, but I'll try out the ntfsclone ... | dd ... thing when I get a change.

//abpdk
ASKER CERTIFIED SOLUTION
Avatar of Gns
Gns

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial