Skip to content

Latest commit

 

History

History
21 lines (19 loc) · 362 Bytes

sshfs.md

File metadata and controls

21 lines (19 loc) · 362 Bytes

sshfs

$ sudo apt-get install sshfs

If command

$ cat /etc/group | grep 'fuse'

shows nothing, then run

$ sudo groupadd fuse
$ sudo usermod -a -G fuse $USER

Restart the machine.

Mount/unmount:

$ sshfs -o idmap=user $USER@remote_host:/ /some/local/path/remote_host
$ fusermount -u /some/local/path/remote_host