How to mount remote filesystem with ssh
This tutorial show how to mount remote filesystems on Debian by using sshfs.
-
Install
sshfs
package:$ sudo apt-get install sshfs
-
Make a mount point:
$ mkdir /media/remotehome
-
Mount the remote filesystem:
$ sudo sshfs user@remoteserver:/home/user /media/remotehome
-
Don't forget to unmount the remote filesystem whenyou're done:
$ umount /media/remotehome
Danilo