Right, to mount your drive, first create a mount point.
mkdir /mnt/ntfs
Then you need to mount it, if its the first partition on the primary master then it will be /dev/hda1 for example.
mount -t ntfs /dev/hda1 /mnt/ntfs
then cd into that directory and check all is well. Now, if you want that to be there from when you first turn on the computer without having to mount it every time, open up /etc/fstab in a text editor (such as nano) and go to the bottom. Add this:
/dev/hda1 /mnt/ntfs ntfs defaults 0 0
Then save it. This should get you read-only to the ntfs partition. To do more look at: Linux NTFS file system support:
The goals of this project are: create a new Linux kernel driver for the NTFS file system (v1.2 and later 3.0), user space utilities (e.g. format, ntfs check, etc.) and a library to avoid code duplication and provide access to NTFS to other GPLed programs.
Regards,
MontyW, Princeton NJ. USA, 3rd rock from the sun!
Regards
Montyw