I know this is dredging up a REALLY old post, but I'm having the same problems. Any solution for it?
<Edit because I'm a stupidass.>
This came from
here
Accessing your NTFS partitions
You will have to create a mount point and add an entry to /etc/fstab for the NTFS partitions you want to access.
There are many different options you can use to mount the partition depending upon your needs.
If you have a single user system or don't need to give others access to the partition, you can use this.
Replace "xxx" on uid and gid with your userid and group id.
/dev/hdc2 /mnt/windows ntfs noauto,user,uid=xxx,gid=xxx,umask=007 0 0
You can find out what your userid and groupid is with:
$ cat /etc/passwd | grep username
username:x:500:500:realname:/home/username:/bin/bash
If you were using the above user, the /etc/fstab entry would be:
/dev/hdc2 /mnt/windows ntfs noauto,user,uid=500,gid=500,umask=007 0 0