You have to sudo or if you're using FC5, su in as root and make the directory first before mounting.
Remember to always try it as root if it doesn't work.
Do fdisk -l to find the name of your NTFS partition, it should be hdx# for IDE or sdx# for SCSI/SATA. Then just edit your fstab file which is located in /etc
Similar to mines
Code:
/dev/sda2 / reiserfs acl,user_xattr 1 1
/dev/sdb6 swap swap defaults 0 0
proc /proc proc defaults 0 0
sysfs /sys sysfs noauto 0 0
debugfs /sys/kernel/debug debugfs noauto 0 0
usbfs /proc/bus/usb usbfs noauto 0 0
devpts /dev/pts devpts mode=0620,gid=5 0 0
/dev/fd0 /media/floppy auto noauto,user,sync 0 0
/dev/sdb5 /mnt/sdb5 ntfs rw,users,umask=022 0 0
The part you're looking at is
Code:
/dev/sdb5 /mnt/sdb5 ntfs rw,users,umask=022 0 0
/dev/sdb5 is my second SATA drive, the NTFS partition is located on the fifth partition which is an extended partition. Anything thing 5 and over is always extended, anything from 1 to 4 is primary (because you can only have 4 primary partition per hard drive). /mnt/sdb5 is my destination, this is where the file is place when it's mounted, that's where I made the directory first before I edited or mount the partition.
When you edit your fstab file, make sure to leave a space at the end of the file by pressing enter twice.
After that is save and done, just open up a shell, and type mount dev name, for my example I just type mount /dev/sdb5 and it'll search the fstab file. You won't have to do after you restart because it will auto mount for you. If you don't want it to auto mount just append noauto like this for example
Code:
/dev/sdb5 /mnt/sdb5 ntfs noauto,rw,users,umask=022 0 0
But you'll have to always type mount dev name in the shell everytime.
Also, just make sure you're not copying my fstab example, because sdb5 is my partition and may not be the same as yours. That's what fdisk -l is for.
An example of my fdisk -l results
Code:
Disk /dev/sda: 80.0 GB, 80000000000 bytes
255 heads, 63 sectors/track, 9726 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Device Boot Start End Blocks Id System
/dev/sda1 1 4870 39118243+ 7 HPFS/NTFS
/dev/sda2 * 4871 6146 10249470 83 Linux
/dev/sda3 6147 9726 28756350 f W95 Ext'd (LBA)
/dev/sda5 6147 8709 20587266 7 HPFS/NTFS
/dev/sda6 8710 9726 8169021 7 HPFS/NTFS
Disk /dev/sdb: 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/sdb1 * 2 19457 156280320 f W95 Ext'd (LBA)
/dev/sdb5 2 19265 154738048+ 7 HPFS/NTFS
/dev/sdb6 19266 19457 1542208+ 82 Linux swap / Solaris