我正在运行一个集群。主目录使用 NFS 挂载。
以下给出了集群上的错误:
node-a$ ssh node-b touch /home/user/testFile && rm /home/user/testFile
rm: cannot remove `/home/user/testFile': No such file or directory
但是,以下工作:
node-a$ ssh node-b touch /home/user/testFile && ls /home/user && rm /home/user/
我已经激活了安装选项sync,noac
。这可能是 linux 内核(2.6.33.1
位于此集群系统上)或提供 NFS 共享的 NAS 的嵌入式 linux 中的错误吗?