Debian – Writing on NTFS drives (on Debian Wheezy)

debianntfs

I am currently setting up a personal server on Debian Wheezy. My machine is an ARM based architecture (Cubox).

The problem appear when I want to mount and use my NTFS external hard drives.
The mount point is correct, I can access files and folders, I can change owner but it is impossible to write files even as root.

I mount my drives with "mount -o options source destination"
The command mount gives rw option for this mounted drive.

Best Answer

You need "fuse" and "ntfs-3g" for this to work. From what I read cubox has this in the kernel so you can try:

mount -t ntfs-3g /dev/sdb1 /mnt/ntfs/

Change the paths to suit.

Related Question