Fare il mount di un percorso SSHFS con FUSE
Esguire il mount locale di un percorso remoto tramite SSHFS:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
# eseguire il mount della home remota sshfs username@hostname: mountpoint <password> # eseguire il mount di un path assoluto remoto sshfs username@hostname:/my/path mountpoint <password> # eseguire l' umount fusermount -u mountpoint # per impostare i dati di mount automaticamente mettere in /etc/fstab # allow_other: permette di accedere al path anche a chi non è root # uid e gid: impostano i permessi owner a un altro utente sshfs#user@host:/my/path mountpoint fuse defaults,noauto,rw[,allow_other][,uid=username][,gid=usergroup] 0 0 # o semplicemente sshfs#user@host:/my/path mountpoint fuse user 0 0 # per eseguire il mount mount mountpoint # in caso serva che il percorso sia accessibile a tutti gli altri utenti usare l'opzione -o allow_other |
http://fuse.sourceforge.net/sshfs.html
http://www.fullo.net/blog/archives/2006/05/09/montare-un-disco-remoto-con-fuse-e-sshfs/