How to mount remote filesystem with ssh
Published 2012-02-21
This tutorial show how to mount remote filesystems on Debian by using sshfs.-
Install
sshfspackage:$ 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