Assumptions
- The target machine have SSH up and running
- You have valid credentials to connect to the target machine through SSH
Procedure
Suppose we want to mount directory /srv/ftp to /mnt/remote, on remote machine defined on ~/.ssh/config1 as target.
- Install SSHFS
- Prepare an empty directory, e.g.
/mnt/remote/. - Mount:
sshfs target:/srv/ftp /mnt/remote
Unmount using umount /mnt/remote or fusermount -u /mnt/remote