Ich habe Folgendes in meiner /etc/fuse.conf
Akte:
# 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
Aber wenn ich versuche, einen Remote-Pfad mit der Option bereitzustellen allow_other
:
> sshfs name@server:/remote/path /local/path -o allow_other
Ich bekomme:
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
Ich habe dreifach geprüft und die Option user_allow_other
ist in meiner nicht kommentiert fuse.conf
, wie ich oben kopiert habe.
Ich habe auch ausgeführt sudo adduser my_user_name fuse
(nicht sicher, ob dies erforderlich ist), aber ich bekomme immer noch das gleiche Problem.
Warum wird die /etc/fuse.conf
Datei nicht korrekt analysiert ?