Levi wrote: > Hello, > > I'm trying to use the EncFS and would like to pass in a couple mount > options to MacFUSE, but I'm running into a couple snags and could use > some help. > > The encfs man page says: > > -- The -- option tells EncFS to send any remaining arguments > directly to FUSE. In > turn, FUSE passes the arguments to fusermount. See the > fusermount help page > for information on available commands.
fusermount is for Linux FUSE. MacFUSE doesn't have fusermount. > So I've formulated my call to encfs to look like this: > > encfs -f --ondemand --idle=5 --extpass=~/getpass ~/.crypt-raw ~/ > crypt -- nobrowse noautoopen I don't know how encfs is passing the options to libfuse, but sounds like libfuse isn't seeing "-onobrowse". It's just seeing "nobrowse", which it can't parse by itself. That is: somefs [options...] nobrowse # incorrect syntax somefs [options...] -onobrowse # ok somefs -ooptions,options,options,...,nobrowse # ok > 1) Is 'nobrowse' actually supported, or am I not doing something > correctly? You are not doing something correctly. > 2) The options wiki entry says it is "A Brief Guide" which suggests > there are other options (which is why I left in 'noautoopen' which is > a valid option to hdiutil). Are these other options documented some > where (I couldn't find them)? "Brief" means it describes available options briefly. That doesn't mean MacFUSE magically supports options from hdiutil or other applications for that matter. 'noautoopen' is not a MacFUSE option, so take it out. There's no need to second guess--you could also just grep in the MacFUSE source tree. > 3) Is there an option I can specify to have the Finder /not/ show the > mounted volume (such as 'noautoopen') as the volume showing up is more > of an annoyance than anything else for my purposes (and because it > flickers and the label changes color, etc. with access). Yes, nobrowse. Amit --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "macfuse-devel" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/macfuse-devel?hl=en -~----------~----~----~----~------~----~------~--~---
