Tengo lo siguiente en mi /etc/fuse.conf
archivo:
# 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
Pero cuando trato de montar una ruta remota con la opción allow_other
:
> sshfs name@server:/remote/path /local/path -o allow_other
Yo obtengo:
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
He verificado tres veces y la opción no user_allow_other
está comentada en mi fuse.conf
, como he copiado anteriormente.
También he ejecutado sudo adduser my_user_name fuse
(aunque no estoy seguro si es necesario), pero sigo teniendo el mismo problema.
¿Por qué no analiza el /etc/fuse.conf
archivo correctamente?