Allow multi-user access / global mount via fstab
Closed this issue · 3 comments
Are there any plans to allow a mounted filesystem to be used by other users beside the one who mounted it in the first place?
Also is there a way to include this to /etc/fstab to make it available after system boot?
Have you tried adding this option? Note that both of these might work, but is a security issue and reason they're not included by default.
-o allow_other
or
-o umask=000
So your command would look like:
python2.7 acd /mnt/acd/ -oemail='myemailaddress@host.com',password='super_secret',umask=000,allow_other
That worked thanks! Didn't know you could just pass those options as well - might be a good addition to the docs.
Thanks for the suggestion @tfohlmeister; I've updated the docs in 9e7977f to mention this.