找不到NFS网络路径


5

我确实在我的debian 7服务器上设置了一个nfs共享,并试图将它安装在Windows 7机器上。

我尝试过以下方法:

C:\Users\David>mount \\192.168.178.240\backups Y:
Network Error - 53

Type 'NET HELPMSG 53' for more information.


C:\Users\David>mount 192.168.178.240:/backups Y:
Network Error - 53

Type 'NET HELPMSG 53' for more information.

我跑的时候 NET HELPMSG 53 它告诉我没有找到网络路径。

C:\Users\David>showmount -e 192.168.178.240
Exports list on 192.168.178.240:
/backups                           192.168.0.0/255.255.255.0

你可以看到它 存在。 Windows 7计算机的IP地址是192.168.137.252,因此它位于正确的子网中。

/ etc / exports如下:

root@debiansrv:~# grep backups /etc/exports
/backups 192.168.0.0/255.255.255.0(rw)

在Windows Server 2008 R2上尝试了与上面相同的内容(IP:192.168.178.230)。相同的错误
David

如果你试图使用会发生什么 net use 代替 mount
Ƭᴇcʜιᴇ007

1
找到了解决方案。除了rw选项,我不得不添加“不安全”
David

1
高兴听到!您应该稍微扩展该解决方案并将其添加为未来访问者的答案(允许:))。
Ƭᴇcʜιᴇ007

1
会尝试。您可能已经注意到英语不是我的母语。还必须从匿名用户映射uid和gid以使写入和读取权限起作用。
David

Answers:


1

尝试使用“*”而不是指定驱动器名称。

错误53也会在无法分配驱动器名称时返回。

另外,完全按照showmount -e输出显示,例如:

如果在你的导出中说/ home作为导出,请不要挂载/ home / [something],窗口不会理解。


0

我有同样的问题,我找到了

NFS server has an option of working in insecure mode (Allowing higher incoming port numbers). Windows NFS client often uses higher port numbers. You can enable this option by adding an option to the share Example: /share *(insecure,rw)

You can also try installing Windows services for UNIX package which contains a nfs client. You can try to connect the nfs server using this utility and cross check again. You can download the package from the following link http://www.microsoft.com/downloads/e...displayLang=en

我根据它更改了/ etc / exports(通过添加不安全的选项)并且它可以正常工作

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.