cp/mv 和 nfs 的权限问题

cp/mv 和 nfs 的权限问题

我在一台计算机上安装了一个带有 ntfs 的驱动器,并可使用 NFS 供第二台计算机使用。在第二台计算机上,我可以读取和写入该驱动器,但有一个问题; cp 将创建一个文件但得到:

cp: cannot create regular file ‘wgb/ccc’: Operation not permitted

第一次然后第二次调用将成功写入内容(当文件已存在时)

mv 总是会失败:

mv: cannot create regular file ‘wgb/ccc’: Operation not permitted

如何诊断/修复它?


设置是

Comp1(ubuntu 服务器)/etc/fstab

UUID=01CF340CBDFC8A90 /mnt/wgb  ntfs-3g defaults,auto,umask=000,users,rw 0

Comp1 /etc/exports

/mnt/wgb *(rw,sync,no_root_squash,no_subtree_check)

Comp2 (Linux Mint) /etc/fstab

192.168.0.4:/mnt/wgb    /mnt/wgb    nfs auto,nofail,noac    0   0

答案1

我设法通过改变让它发挥作用

no_root_squash

all_squash,anongid=0,anonuid=0

相关内容