|
|
发表于 2005-6-22 06:14:14
|
显示全部楼层
Quoted from http://kanotix.com/files/tutorials/ntfs-using-captive.txt
# su
Mount the Windows XP Partition:
# mount /mnt/hda1
Fetch driver - if there is no Win XP on HD then with a download of about 30 MB size:
# captive-install-acquire
Umount Windows (very important!):
# umount /mnt/hda1
Mount it with captive:
# mount -t captive-ntfs /dev/hda1 /mnt/hda1
Now it is possible to read and write on that partition as root!
Note:
Instead of using captive-install-aquire it is possible to add manually the 4 needed files. I.e. save them onto 2 floppy disks or USB stick, then copy them manually:
# cd /var/lib/captive/
Copy these files to it:
cdfs.sys
fastfat.sys
ntfs.sys
ntoskrnl.exe
That does the same as using the installer.
The principle of captive is to provide an interface between Linux to use the original M$ driver to do the writing so that you can safely write NTFS partition. |
|