【发布时间】:2012-08-26 15:50:36
【问题描述】:
我想在 windows(desktop) 上设置一个 nfs 服务器并使用 ubuntu(laptop) 作为客户端。
我已经在 windows 上安装了 cygwin 和 nfs-server,但是我无法从 linux 安装任何东西。
来自 cygwin 的 /etc/export 包含:
/mnt/d 192.168.0.100(ro)
在我的笔记本电脑上,我使用 showmount 得到以下结果:
showmount -e 192.168.0.101
Export list for 192.168.0.101:
/mnt/d 192.168.0.100
如果我尝试挂载,我会得到:
sudo mount -t nfs 192.168.0.101:/mnt/d d
mount.nfs: Connection timed out
如果我在 /etc/exports 中放一个 *,我会得到:
sudo mount -t nfs 192.168.0.101:/mnt/d d
mount.nfs: access denied by server while mounting 192.168.0.101:/mnt/d
请帮忙:(
【问题讨论】:
标签: windows linux ubuntu cygwin nfs