Mount remote directories using ssh
Posted by Taoufix on Oct 24th, 2007 in Computers
- 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]






