-
Notifications
You must be signed in to change notification settings - Fork 18
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
Find fusermount on the $PATH #31
Comments
Can't we send the required syscall(s) directly without requiring an external utility to be present on the system? |
That'd be awesome. But the way I understand it that'd mean that we'd have to be setuid root, which is obviously not an option. (They always say FUSE is "in userland", but it still requires code that runs as root - that is |
Test case: With |
We cannot rely on the compile-time
FUSERMOUNT_DIR
at build time but have to look at the$PATH
on the target system at runtime, because distributions agree on nothing.Use case:
Essentially we need to reinstate
findBinaryOnPath
from f0e35b0.The text was updated successfully, but these errors were encountered: