无法更改 SSHFS/FUSE 中的所有权

无法更改 SSHFS/FUSE 中的所有权

当尝试使用chown已安装的 SSHFS 上的文件夹更改所有者时,我遇到权限被拒绝的情况:

# /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工作正常)

相关内容