Seems there are now two packages claiming to provide full read/write support of windows ntfs. One is ntfsprogs from linux-ntfs.org, the other is ntfs-3g from ntfs3g.org , which is based on FUSE. While the former alleges the latter an obsolete fork, the latter bashes reliablility issue in the former’s 2.0.0 release. Without knowing which one performs superior, I’m sticking with ntfsprogs simply because of its longer track-record and wishing the two will merge someday.
A how-to is only a google away, such as Howto for ntfs-3g
apt-get install ntfs-3g
or
apt-get install ntfsprogs
mount -t ntfs-3g /dev/hda1 /media/win -o umask=0,nls=utf8
or
mount -t ntfs /dev/hda1 /media/win -o umask=0,nls=utf8
entry for /etc/fstab
/dev/hda1 /media/win ntfs-3g umask=0,nls=utf8 0 0
or
/dev/hda1 /media/win ntfs umask=0,nls=utf8 0 0
November 24, 2007 at 1:02 pm |
NTFS Troubles
After trying desperately to get NTFS-3G to cooperate with my system, I finally settled for another project named Linux-NTFS (apt-get install ntfsprogs). I found out about it from “Gordon’s Toy” after querying Google about NTFS-3G and …
July 12, 2009 at 10:40 am |
Thank you very much. I searched for this for a long time. This is the first time I use Debian, and this helps me very much.
July 20, 2009 at 5:18 pm |
I would like an external usb drive (ntfs) to automount, and to allow gparted to be able to resize or modify ntfs partitions.
should I install ntfsprogrs or mtfs-3g? (or both?)