May 28, 2013 0 minutes and 13 seconds read

Automount NTFS volume under Linux (Mint)

When automounting an NTFS volume under Linux (Mint) you can do this using the /etc/fstab file. dummy dummy dummy

$ sudo pico /etc/fstab

Add a line in the /etc/fstab file:

# custom mount point
/dev/sdb1 /media/windows-c ntfs-3g defaults 0 0

And take the mount into effect.

$ mount -a