3

There seem to be a couple of problems at play here. First let me describe my set-up:

I have a Xubuntu 11.04 file server that I can SSH into. I believe that machine has all the packages it needs on it to make this work. I SSH in from an iMac running 10.6.8 (64-bit Kernel and Extensions).

That works fine.

In order to make the sshfs bit work I've installed MacFUSE. This excellent project seems to have been abandoned unfortunately. In any case, there was a problem with MacFUSE-2.0.3,2.dmg as it is 32-bit. I've updated to the 2.15 beta but that's still 32-bit as you can see (I think it has a 64-bit prefPane???):

MacFUSE

Now I need the sshfs 'plugin' to complete this picture. A typical terminal error message looks as follows:

error

I've tried using MacFusion but that didn't work either. I've also tried the sshfs.app. I believe the problem lies in the 32-bitness of the MacFUSE system.

I could buy Xcode and compile FUSE and sshfs from source, but I'm looking for pre-compiled binaries if at all possible.

Any clues?

boehj
  • 1,120

1 Answers1

1

Well, from the error messages the problem lies in that your shell does not have sshfs in PATH.

You can check your path with:

echo $PATH

and/or you can try to run it with full path like:

/path/to/your/sshfs .. and the rest of the params

Usually on *nix systems you can add to your path (assuming your shell is bash) by editing/creating this .bashrc file to your home directory.

I'm not sure do you have nano editor available, but any editor will do (Word is not and editor).

nano -w ~/.bashrc

add a line to that file

export PATH=$PATH:/path/to/your/sshfs/dir
Manwe
  • 888