Read/Write ntfs in Debian

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

One Response to “Read/Write ntfs in Debian”

  1. David's Blog Says:

    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 …

Leave a Reply