- Download FUSE for Mac and SSHFS from here and install them in that order.
- Create a mountpoint for e.g.
qmaster
in/mnt
andchown
it to you:sudo mkdir -p /mnt/qmaster
sudo chown <username> /mnt/qmaster
- Symlink it to the
/Volumes
diectory (creating it directly in/Volumes
causes trouble with unmounting):ln -s /mnt/qmaster /Volumes/qmaster
sshfs -o volname=qMaster,reconnect,follow_symlinks <username>@qmaster:/home/<username>/ /mnt/qmaster
- if you want, you can make this command an alias like
sshfs_qmaster
or just run it on startup by saving it to a script.
- Unmount with
umount /mnt/qmaster
or by "ejecting" the volume, or dragging it to the trash.