On Mon, Sep 19, 2011 at 11:11:33PM -0500, Mr. Puneet Kishor wrote: > $sshfs Remote:/path/to/remote/home Remote > -oauto_cache,reconnect,volname=Remote,defer_permissions > the MacFUSE file system is not available (-1) > the MacFUSE file system is not available (1)
This error message comes from the MacFUSE library, not Fuse4X, so it sounds like you still have a copy of MacFUSE around and your sshfs is linked against that. I would start by checking the following: - make sure you're actually using sshfs from MacPorts: `which sshfs` should return /opt/local/bin/sshfs - make sure your sshfs is linked against the right libfuse. `otool -L /opt/local/bin/sshfs` should list /opt/local/lib/libfuse.2.dylib, among other libraries - make sure that library is installed by the fuse4x port: `port provides /opt/local/lib/libfuse.2.dylib` should indicate that it's provided by fuse4x. Dan -- Dan R. K. Ports MIT CSAIL http://drkp.net/ _______________________________________________ macports-users mailing list [email protected] http://lists.macosforge.org/mailman/listinfo.cgi/macports-users
