我想在 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
请帮忙 :(