Ho il seguente nel mio /etc/fuse.conf
file:
# Set the maximum number of FUSE mounts allowed to non-root users.
# The default is 1000.
#
#mount_max = 1000
# Allow non-root users to specify the 'allow_other' or 'allow_root'
# mount options.
#
user_allow_other
Ma quando provo a montare un percorso remoto con l'opzione allow_other
:
> sshfs name@server:/remote/path /local/path -o allow_other
Ottengo:
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
Ho controllato tre volte e l'opzione user_allow_other
è decommentata nel mio fuse.conf
, come ho copiato sopra.
Ho anche eseguito sudo adduser my_user_name fuse
(non sono sicuro se questo è necessario però), ma ho ancora lo stesso problema.
Perché non analizza /etc/fuse.conf
correttamente il file?