'not there' posted a link thats nearly 12 years out of date, its not news or a 'how to' anymore,
you need ntfs-3g, its in your repositories so just enable it,
you also need to mount your windows partition
to mount the partition
open a terminal and type
fdisk -l | grep NTFS (enter)
this will tell you where your ntfs partition is,
at the output you will see /dev/??? (??? being the location)
now type
mkdir /media/windows (enter)
mount –t ntfs-3g /dev/??? /media/windows (enter)
then add this line to /etc/fstab
/dev/??? /media/windows ntfs-3g defaults 0 0
reboot your machine and the windows partition should be seen with read and write access
oh, i forgot to mention - it all needs to be done as root, you cannot do it as a normal user