My last post should work for you as long as you are root. However for a more permanent solution that should work as a regular user.
You first need to see which partition is your NTFS partition. This can be done by issuing the following command as root:
Code:
fdisk -l
Disk /dev/hda: 160.0 GB, 160041885696 bytes
255 heads, 63 sectors/track, 19457 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Device Boot Start End Blocks Id System
/dev/hda1 * 1 1911 15350076 7 HPFS/NTFS
/dev/hda2 1912 19457 140938245 5 Extended
/dev/hda5 1912 14716 102856131 83 Linux
/dev/hda6 14717 17278 20579233+ 83 Linux
/dev/hda7 17279 17404 1012063+ 82 Linux swap / Solaris
/dev/hda8 17405 19457 16490691 83 Linux
You then need to create a mount point for it by issuing the following command as root:
This mount point can be named anything you want, however I usually like to keep all mount points in the /mnt directory. Then you need to add a line to /etc/fstab like this:
Code:
/dev/hda1 /mnt/windows ntfs nls=utf8,umask=0222,users 0 0
You now should be able to mount your NTFS partition using a command like this:
This will mount in this case the /dev/hda1 to the mount point of /mnt/windows in read only mode and you don't need to be root to do it.
Regards,
Fordeck