อันนี้ผมใช้วิธี config ใน /etc/fstab เอานะครับ

First thing first is we require this package "ntfs-3g" for read/write support install by using

$ sudo apt-get (aptitude) install ntfs-3g

Then back up the fstab file by

$ sudo cp /etc/fstab /etc/fstab.bak

After that we edit this file

$ sudo vi /etc/fstab

or

$ sudo nano /etc/fstab

$ gksudo gedit /etc/fstab

Add this in to this fstab file:

/dev/<your partition> /media/<mount point> ntfs-3g defaults,locale=en_US.utf8 0 0

Then for make sure check in /media that have the directory that we point at it or not unless we have to create this directory:

$ sudo mkdir /media/<mount point>

 

Ref: ubuntu forums