Sshfs

A network filesystem client to connect to SSH servers.

Usage

Mount filesytem from remote with login.

sudo sshfs -o allow_other,default_permissions root@xxx.xxx.xxx.xxx:/ /mnt/droplet

Mount filesystem from remote ssh key authorization

sudo sshfs -o allow_other,default_permissions,IdentityFile=~/.ssh/id_rsa root@xxx.xxx.xxx.xxx:/ /mnt/droplet

Permanent mounting

Edit your /etc/fstab file.

Add a ligne correspinding to the desired mounting fs

sshfs#root@xxx.xxx.xxx.xxx:/ /mnt/droplet