I've got an external USB hard disk, partitioned with NTFS. I'm of course running Feisty, and I've successfully installed NTFS-3G and supporting software using Adept (including fuse, etc.)
I can manually mount my volume from the command line with no problem using "sudo mount -t ntfs-3g /dev/<device name> <mount point>" and use the drive.
However, I would like KDE's media daemon/automounter to mount this volume when I plug it in.
I have found the UUID of the external drive using vol_id, and added an entry in /etc/fstab like this:
where /media/extusbdrive is a directory I created.
However, this does not seem to make any difference to the KDE automounter, and plugging in the drive doesn't result in it getting mounted. Where are the rules/database for KDE's mounting daemon stored? How can I tell it how to handle this device?
Thank you.
I can manually mount my volume from the command line with no problem using "sudo mount -t ntfs-3g /dev/<device name> <mount point>" and use the drive.
However, I would like KDE's media daemon/automounter to mount this volume when I plug it in.
I have found the UUID of the external drive using vol_id, and added an entry in /etc/fstab like this:
Code:
UUID=A270A5AA70A5861F /media/extusbdrive ntfs-3g defaults,umask=007,gid=46,force,noauto 0 0
However, this does not seem to make any difference to the KDE automounter, and plugging in the drive doesn't result in it getting mounted. Where are the rules/database for KDE's mounting daemon stored? How can I tell it how to handle this device?
Thank you.
Comment