Register now and start sharing your code snippets.
-->
Mounting a remote network drive with SSHFS on OSX
Shell Script (Bash) posted 3 months ago by christian
- Install SSHFS
http://code.google.com/p/macfuse/
- Read documentation
http://code.google.com/p/macfuse/wiki/MACFUSE_FS_SSHFS
- Create symlink
1 ln -s /Applications/sshfs.app/Contents/Resources/sshfs-static /usr/local/bin/sshfs
- Mount drive
1 mkdir /Volumes/mount_name 2 sshfs -p 666 server:/ /Volumes/mount_name -oreconnect,ping_diskarb,volname=mount_name
- References
http://lifehacker.com/software/ssh/geek-to-live—mount-a-file-system-on-your-mac-over-ssh-246129.php