Martin Pärtel

Results 99 comments of Martin Pärtel

Did you try adding the fstab lines after boot and doing the mounting manually (without rebooting)? This might give us some information.

bindfs is to some extent at the mercy of FUSE's option parser and `fuse_main`'s order of doing things. The correct place to fix this would be somewhere in [libfuse](https://github.com/libfuse/libfuse) I...

Seems to work for me (latest OS X, osxfuse and bindfs): ``` $ mkdir bla $ bindfs /Applications/Calculator.app/Contents bla $ ls bla Info.plist MacOS PkgInfo PlugIns Resources _CodeSignature version.plist ```...

I'm sorry I've **still** not found the time for this. It's still on my list.

Sorry for the slow reply. Possible workaround: `--multithreaded` - but there are several caveats: - At least `--mirror` is buggy in multithreaded mode (see BUGS on the [man page](https://bindfs.org/docs/bindfs.1.html)). Some...

Thanks for reporting, I'll try to look into this in a week or two.

Alright, could you see if https://github.com/mpartel/bindfs/pull/63 works for you? It adds an option `--no-user-group-precaching`, which makes the cache on-demand.

Ok, good to hear. I'll need to take another look at my code. Without the new flag, it *should* still read through the entire user database at startup, and additional...

Whoops, you're right. > neither does it expose the member list when calling getgrnam/getgruid That explains why the supplementary groups don't work. Did you mean `getgrouplist` (which I only discovered...

Or if you'd like to try it sooner, see `userinfo.c:258` in the PR.