handyman5 / acd_fuse

FUSE filesystem driver for Amazon Cloud Drive
Other
186 stars 23 forks source link

Allow multi-user access / global mount via fstab #11

Closed tfohlmeister closed 9 years ago

tfohlmeister commented 9 years ago

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?

tentious commented 9 years ago

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

tfohlmeister commented 9 years ago

That worked thanks! Didn't know you could just pass those options as well - might be a good addition to the docs.

handyman5 commented 9 years ago

Thanks for the suggestion @tfohlmeister; I've updated the docs in 9e7977f883492db234e3c3751b77c647ed337eb5 to mention this.