Hi, I'd like to pass my own options to libfuse. For example, this FUSE over Google Drive https://github.com/astrada/google-drive-ocamlfuse allows one to pass any options directly to libfuse with the -o option, such as:
$ google-drive-ocamlfuse -o allow_other
It states in the help as:
-o specify FUSE mount options.
However, I don't see anything similar in boxfs2. It would be nice to have something like that as well.
I wanted to pass my -o allow_other to libfuse with boxfs2 so that I can see the mounted directory through SMB. For now, I've modified the source on my fork in 79457da and it seems to be working well so far.
Hi, I'd like to pass my own options to libfuse. For example, this FUSE over Google Drive https://github.com/astrada/google-drive-ocamlfuse allows one to pass any options directly to libfuse with the
-ooption, such as:It states in the help as:
However, I don't see anything similar in boxfs2. It would be nice to have something like that as well.
I wanted to pass my
-o allow_otherto libfuse with boxfs2 so that I can see the mounted directory through SMB. For now, I've modified the source on my fork in 79457da and it seems to be working well so far.