NFS 共享 - 尝试挂载我的 Synology 1511+ NAS

NFS 共享 - 尝试挂载我的 Synology 1511+ NAS

我在 Mac Mini 上运行的是 ubuntu 10.10 64 位。安装 nfs-common 后,尝试使用

mount -t nfs4 -o proto=tcp,port=2049 192.168.1.139:/volume1/magneto/ ./test

我一直收到这个错误:

mount.nfs4: mounting 192.168.1.139:/volume1/magneto/ failed, reason given by server: No such file or directory

当我跑步时

showmount -e 192.168.1.139
Export list for 192.168.1.139:
/volume1/magneto *

它似乎表明音量在那里,而且我输入的内容正确。我尝试删除尾部的斜杠,但没有成功。

有人知道为什么会发生这种情况吗? 我正在使用这个 NAS:http://www.synology.com/us/products/DS1511+/index.php

答案1

与 NFSv3 不同,NFSv4 隐藏了导出路径(NFS 根)的前缀。该前缀在 NAS 上的导出中配置。

尝试:

mount -t nfs4 -o proto=tcp,port=2049 192.168.1.139:/magneto/ ./test

或者:

mount -t nfs4 -o proto=tcp,port=2049 192.168.1.139:/ ./test

相关内容