虚拟机采用桥接 windows和虚拟机里的linux和板端IP地址都设在同一网段。确保三个都可以互ping通。
虚拟机linux主机端:
启动nfs服务:
# vim /etc/exports
/nfsroot *(rw)
ubuntu里是这样 /nfsroot *(rw,sync,no_root_squash)
# /etc/init.d/nfs
restart
ubuntu
#/etc/init.d/nfs-kernel-server restart
板端:
root@zynq:~# mount -t nfs 192.168.2.175:/nfsroot /mnt
svc: failed to register lockdv1 RPC service (errno 111).
mount: mounting 192.168.2.175:/nfsroot on /mnt failed: Connection refused
root@zynq:~# mount -t nfs -o nolock 192.168.2.175:/nfsroot /mnt
192.168.2.175为虚拟机linux主机端IP
阅读(1051) | 评论(0) | 转发(0) |