SSHFS/FUSE에서 소유권을 변경할 수 없습니다.

SSHFS/FUSE에서 소유권을 변경할 수 없습니다.

SSHFS 마운트의 폴더를 사용하여 소유자를 변경하려고 chown하면 권한이 거부되었습니다 .

# /etc/fstab
sshfs#[email protected]:/mnt/data  /data   fuse    user,_netdev,nonempty,reconnect,allow_other,idmap=user,delay_connect,workaround=all  0   0

ubuntu그런 다음 다음과 같이 실행할 때 root:

$ chown other:other /data/test
chown: changing ownership of '/data/test': Permission denied
$ ll /data
total 24K
drwx------ 1 ubuntu ubuntu  16K Aug 20 16:01 lost+found
drwxr-xr-x 1 ubuntu ubuntu 4.0K Aug 22 20:32 test

다르게 구성해야 하는 사항에 대한 팁이 있습니까? 여러 SSHFS 옵션을 읽고 시도했지만 지금까지 좋은 것은 없습니다 ...

( chmod잘 작동합니다)

관련 정보