Don't disperate babe, you always have the command line ;) and my instructions!!!
Open a shell and insert following commands:
mkdir /wherever/ntfsTo the last line insert:
chown root:users /wherever/ntfs
vim /etc/fstab
/dev/hda1 /wherever/ntfs ntfs ro,users,gid=users,umask=0002,nls=utf8 0 0where "/dev/hda1" could be different according to your ntfs partition. Ex. "/dev/sda1" for USB disks.
If yours it's an external HD write this:
/dev/sdb1 /wherever/ntfs subfs ro,users,uid=1000,gid=100,umask=0002,nls=utf8 0 0
where "/dev/sdb1" could be different on your system and uid/gid too. To verify uid/gid just type "id" in a shell and find your user.
That's all folks!! Now you can mount your partition using "mount /dev/hda1"!!