How to mount SFTP/SSH in Finder on OS X Snow Leopard

findermountssh

My Question is seemingly simple. I need to mount an SSH/SFTP volume and make it visible in finder to be able to use it as if it were a local volume (think SMB share). I have tried everything I could find (MacFUSE + sshfs (whatever version), Macfusion (couldn't install),…).

Is there anyway to do this seemingly simple thing? It feels like I'm missing something here. Also, I'm not looking for an SFTP client for download/upload. My personal machine is an Ubuntu box, and that's easily doable on that.

Best Answer

The best solution I've found today (2017) is to use Homebrew and Cask to install osxfuse and sshfs:

brew install --cask osxfuse
brew install sshfs

And then:

sshfs username@hostname:/remote/directory/path /local/mount/point -ovolname=NAME

It works! :-)