我已经使用以下方式构建了 NFS 服务器NFS4J在 MacOS 上,我的代码与自述文件中的示例相同。我使用多通道创建了一个 Ubuntu VM,并将以下几行添加到我的导出文件中:
/Users/user/Documents 192.168.64.3(rw, sync, no_root_squash, no_subtree_check)
然后,使用 NFS4 进行挂载会引发错误,因为 MacOS 仅支持 NFS 版本 3 或 2 服务器。如果我尝试使用此命令进行挂载:
ubuntu@primary:~$ sudo mount -o nfsvers=3 192.168.1.17:/Users/user/Documents /nfs/my_dir
mount.nfs: mount to NFS server '192.168.1.17:/Users/ziadmalik/Documents' failed: System Error: Success
我很困惑,这是成功失败了还是我应该从中得到什么?
注意:这不会显示在 dd 命令中。