私の/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ファイルを正しく解析しないのですか?