Read and respond to this message at:
https://sourceforge.net/forum/message.php?msg_id=2777567
By: szaka
> I managed to use qt_parted from a recent knoppix (3.6?) and now i have
Note, Knoppix has extremely old, outdated NTFS tools. The only rescue CD
I'm aware that currently has the latest ntfsprogs is Recovery Is Possible:
http://www.tux.org/pub/people/kent-robotti/looplinux/rip/
> a space free. i created a new small ntfs part from xp (5GB) and tried
> to backup it (/dev/sda2) to a ntfs.img image on a write-mounted
> (captive) ntfs partition, /dev/hda1, with:
Note, Captive NTFS is about 100-200 slower then the native kernel driver.
You could use that one too (it's also much safer than Captive) but
currently doing this is fairly tricky (I've wrote about it some time ago
on linux-ntfs-dev and/or other forums).
> ntfsclone -0 -/mnt/hda1/ntfs.img /dev/sda2
> but i get an error like: Error(1): Write failed: Operation not
> permitted
There isn't -0 option, so probably that's -o (--output). Also the '-'
right before /mnt doesn't make sense. So the command should be something
like this:
ntfsclone --output /mnt/hda1/ntfs.img /dev/sda2
But due to a Captive feature it will fail or will be even more slower than
it should be. Thus the best way would be using ntfsclone from ntfsprogs
1.9.4 (e.g. by using the above mentioned R.I.P. CD):
ntfsclone --save-image --output /mnt/hda1/ntfs.img /dev/sda2
restoration:
ntfsclone --restore-image --overwrite /dev/sda2 /mnt/hda1/ntfs.img
______________________________________________________________________
You are receiving this email because you elected to monitor this forum.
To stop monitoring this forum, login to SourceForge.net and visit:
https://sourceforge.net/forum/unmonitor.php?forum_id=44084
|