내 /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
파일을 올바르게 구문 분석하지 않는 이유는 무엇 입니까?