У моєму /etc/fuse.conf
файлі є таке:
# 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
Але коли я намагаюся змонтувати віддалений шлях з можливістю allow_other
:
> sshfs name@server:/remote/path /local/path -o allow_other
Я отримав:
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
Я перевірив потрійно, і варіант user_allow_other
не коментується fuse.conf
, як я скопіював вище.
Я також виконав sudo adduser my_user_name fuse
(не впевнений, чи потрібно це), але все одно я маю ту саму проблему.
Чому він не аналізує /etc/fuse.conf
файл правильно?