Mount remote directories using ssh

  • Install sshfs-fuse and make sure fuse is loaded:

[shell]$ lsmod | grep fuse || sudo modprobe -v fuse[/shell]

  • mount the remote dir:

[shell]$ sshfs user@host:/path/to/dir ./dir_at_host/[/shell]

  • to umount it:

[shell]$ fusermount -u ./dir_at_host/[/shell]