May 2017
Beginner
552 pages
28h 47m
English
To mount a filesystem location at a remote host to a local mount point:
# sshfs -o allow_otheruser@remotehost:/home/path /mnt/mountpoint Password:
Issue the password when prompted. After the password is accepted, the data at /home/path on the remote host can be accessed via a local mount point, /mnt/mountpoint.
To unmount, use the following command:
# umount /mnt/mountpoint