mounting a remote ssh filesystem
Published December 8th, 2008 by Chad
I ran into a problem yesterday where I wanted to mount a directory from a remote server to my work laptop. I wanted to be able to use applications like eclipse with files that were on other servers.
The solution I found was awesome. With Ubuntu 8.10 I was able to do the following to mount these remote servers and use the filesystem as if it was local.
$ sudo apt-get install sshfs$ sudo adduser username fuse$ sudo mkdir /media/remote-server-mount-point$ sudo chown username /media/remote-server-mount-point$ sshfs remote-server.com:/desired-mount-directory /media/remote-server-mount-point
