You are not logged in.
Is it possible to specify mount options on the user level to configure the mount options for thunar or pcmanfm? They seem to respect /etc/fstab. Is there like a ~/.config/thunar/fstab or something?
Context:
I have an NTFS drive that's mounted with 777 permissions by default and would like to change that. (Plus ntfs-3g is used instead of the kernel driver)
Related threads:
How to change Gnome 3 GVFS mount options? -> no replies
[SOLVED] automount - change mount options -> use SpaceFM
Default mount options for devices mounted in XFCE GUI -> configure it using udiskie? I don't think this would actually work
noatime-mount with Thunar-Volman -> config option since removed
Last edited by krey (2022-01-08 13:46:00)
Offline
Most user space mounts are handled by udisks, as such you need to check the documentation for udisks: http://storaged.org/doc/udisks2-api/2.9 … tions.html
Offline
Thanks! Unfortunately it looks like this is still on the system level.
Offline
Yes? Udisks operates on a system level so that thunar and other file manager don't have to. They handle the appropriate mount options and even allow it to mount things in the first place. If you wanted to avoid that you'd have to manually mount stuff in places only accessible to your user and handle the options yourself. Udisks doesn't have an user only mode as far as I'm aware, and it wouldn't make much sense with many file systems.
Offline
Allowing users to control random mount options (esp. umask) is a security nightmare - why do you (think you) need this?
If you care about a particular device, you can add it to fstab and reference it by its UUID or even label (rather than the probably non-static device node) and define the desired mount options there.
Online