-
Notifications
You must be signed in to change notification settings - Fork 269
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
AllowRoot doesn't work #144
Comments
Well, crap. Have I mentioned how much I hate the C FUSE library and it's documentation? I think what will happen next is that I remove the I have no intention of letting the Go library bloat into the level of confusion the C library has; we're gonna stick to the kernel API much more closely. |
The plot thickens. OSXFUSE does It's really unclear how to write anything portable when nothing works the same way :( |
^ this is how I do it btw. I don't use AllowRoot, AllowOther should do the job for you. |
… upstream For background see: bazil/fuse#144
… upstream For background see: bazil/fuse#144
… upstream For background see: bazil/fuse#144
Yeee... AllowOther works fine but before you have to uncomment "user_allow_other” option in /etc/fuse.conf . |
Hey fellows, I'm facing the same issue, i want to mount something for the mounting user + root (only) should have access. I'm a bit lost regarding this history do i have to … or something else? |
If you want to tell the kernel to allow other users to use the mount, you need If you want to limit which other users can do that, you need to implement that in the filesystem logic. |
I'm getting this error:
2016/06/27 00:52:21 mount helper error: fusermount: mount failed: Invalid argument
According to https://sourceforge.net/p/fuse/mailman/message/34133833/ allow_root is supposed to be changed into allow_other internally and handled by denying everyone but the user and root in the daemon.
The text was updated successfully, but these errors were encountered: