- Install sshfs-fuse and make sure fuse is loaded:
$ lsmod | grep fuse || sudo modprobe -v fuse
- mount the remote dir:
$ sshfs user@host:/path/to/dir ./dir_at_host/
- to umount it:
$ fusermount -u ./dir_at_host/
$ lsmod | grep fuse || sudo modprobe -v fuse
$ sshfs user@host:/path/to/dir ./dir_at_host/
$ fusermount -u ./dir_at_host/
Leave a Reply