Mounting 2 ntfs partitions in Ubuntu

Have you set up both partitions on separate lines in fstab:
/dev/hda1 /media/windows ntfs-3g defaults,locale=en_US.utf8 0 0
.. changing /dev/hda1 for each of the relevant partitions?

What happens when you type sudo mount -a, do you get any errors?
 
Hi,

Mine looks like this:

/dev/sdb1 /media/windows ntfs-3g defaults,locale=en_US.utf8 0 0
/dev/sdb2 /media/windows ntfs-3g defaults,locale=en_US.utf8 0 0

When I run sudo mount -a I get this message:

fusermount: mountpoint is not empty
fusermount: if you are sure this is safe, use the 'nonempty' mount option
Retrying mount ...
fusermount: mountpoint is not empty
fusermount: if you are sure this is safe, use the 'nonempty' mount option
Failed to mount NTFSUnmounting /dev/sdb2 (Media)
 
Aah, becomes clear.. you are trying to mount sdb1 to the /mount/windows subdirectory and then also mount sdb2 to the same directory.. you want to create a separate directory under /mount just for sdb2.

Add another subdirectory under /mount and change your fstab entries accordingly:
/dev/sdb1 /media/windows ntfs-3g defaults,locale=en_US.utf8 0 0
/dev/sdb2 /media/diferent_subdirectory ntfs-3g defaults,locale=en_US.utf8 0 0

Then sudo mount -a and you should be up and running :)
 
Back
Top Bottom