Open spvkgn opened 7 months ago
3264039 open("/usr/bin/fusermount3", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory)
3264039 open("/usr/bin/fusermount", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory)
What does which fusermount
and which fusermount3
say on your system?
What does
which fusermount
andwhich fusermount3
say on your system?
~ $ which fusermount
/bin/fusermount
~ $ which fusermount3
/bin/fusermount3
~ $ dpkg -L fuse3 | grep '/bin/fusermount'
/bin/fusermount3
/bin/fusermount
Looks like we would have to search for it in all directories on the $PATH
since you never can now where the various distributions put it...
Essentially we need to reinstate findBinaryOnPath
from https://github.com/AppImage/type2-runtime/pull/11/commits/f0e35b014bea9f7d704f7ac1977be90487cac595.
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.
References:
On Ubuntu 22.04 I can't launch it until set
FUSERMOUNT_PROG