1

Possible Duplicate:
How to automount NTFS partitions?

... and having full access on it plus auto mount option on Ubuntu startup?

Thanks, Dave

Dave
  • 1,037

2 Answers2

3

Add the disc to /etc/fstab. Your create a backup and can edit the file with these 2 lines:

sudo cp /etc/fstab /etc/fstab.old
gksudo gedit /etc/fstab

Example:

This assumes sda3 is your ntfs partition and it should be mounted into /media/windows/

/dev/sda3   /media/windows  ntfs    defaults    0   0

So change sda3 to your partitionname and the windows directory name to something you like better. You can use fdisk to see what ntfs is named in Ubuntu:

sudo fdisk -l
Rinzwind
  • 299,756
  • Thanks for info Rinzwind but I just found a good post that explained it how to do it with fstab very well. Is here http://askubuntu.com/questions/46588/how-to-automount-ntfs-partitions – Dave May 17 '12 at 21:14
1

To mount the drives without having to reboot all you've to do is:

sudo mount -a
fossfreedom
  • 172,746
xIN3N
  • 11
  • 2