I am trying to mount an exfat drive using fstab with read/write permission for both user and group.
The line of etc/fstab for this drive is:
UUID=5E98-37EA /home/ftagliacarne/data/media exfat defaults,rw,uid=1000,gid=1001,umask=002 0 1
Using these option the drive gets mounted to the correct location to the correct user and group, however, the group does not have read-write access. i.e. the permission are set to:
drwxr-xr-x 7 ftagliacarne docker-media 262144 Sep 24 20:40 media
Is there any way of setting the group permission to also have read-write access?
Desired outcome:
drwxrwxr-x 7 ftagliacarne docker-media 262144 Sep 24 20:40 media
Some of the things I tried:
- Setting
umaskto002 - Using
chmodbefore/after mounting - Using
chmodrecursively on the parent directory
Appreciate any help you can give me.
Update 1:
I also tried changing the fstab file to the following:
UUID=5E98-37EA /home/ftagliacarne/data/media exfat defaults,uid=1000,gid=1001,dmask=0002,fmask=0113 0 1
Alas, it still does not work.
Update 2:
After having issues at boot due to the configurations above, I changed the /etc/fstab entry to the following:
UUID=5E98-37EA /home/ftagliacarne/data/media exfat defaults,uid=1000,gid=1001,fmask=0113,dmask=0002,nofail 0 0
And now it works. I suspect the issue was with the pass option being 1, as changing that to 0 seems to have fixed it. Thank you to everyone who helped!