Sto cercando di impostare una connessione SSHFS tra due macchine Ubuntu, usando / etc / fstab in modo che si montino automaticamente dall'inizio.
Ho creato una directory .ssh nella mia home directory su entrambe le macchine, ho creato i file id_dsa e id_dsa.pub e ho copiato le chiavi su ciascuna macchina in un file chiamato authorized_keys. Ho impostato le autorizzazioni di directory su 700 e i file su 600.
Ho modificato /etc/fuse.conf in modo che user_allow_other non sia commentato.
Questo è il formato della mia voce in / etc / fstab sul computer client, che ho ottenuto da qui :
sshfs#myname@www.myhome.com:/home/myname /mnt/sshfs/homebox fuse comment=sshfs,noauto,users,exec,uid=1000,gid=1000,allow_other,reconnect,transform_symlinks,BatchMode=yes 0 0
Tuttavia, ogni volta che provo a montare il server, ottengo questo errore:
fusermount: failed to open /etc/fuse.conf: Permission denied
fusermount: option allow_other only allowed if 'user_allow_other' is set in /etc/fuse.conf
Come accennato, ho già commentato user_allow_other, quindi questo errore è ancora più sconcertante.
Cos'altro devo fare?