1、出现问题:
reason given by server: Permission denied
解决:
服务器端启动一定要sudo启动,不然启动失败,服务拒绝
2、出现问题:
svc: failed to register lockdv1 RPC service (errno 111).
lockd_up: makesock failed, error=-111
mount: mounting 192.168.1.101:/home/share on /mnt/hosts failed: Connection refused
则改成:
mount -t nfs -o nolock 192.168.1.101:/home/share /mnt/hosts
3、出现问题:
mount: mounting 192.168.1.101:/home/share on /mnt/hosts failed: Device or resource busy
解决:
mount上之后在进行mount命令会出现此提示,设备正在运行,不用再次mount
如果想再次mount可以先umount /mnt/hosts
4、发现问题:nfs:server is not responding,still trying
原因分析:NFS 的默认传输协议是 UDP,而PC机与嵌入式系统通过UPD交互时就会出现严重的网卡丢包现象。
解决方法:在客户端改用TCP协议,使用下面的命令,
#mount -o tcp 192.168.0.100:/usr/myqt /mnt -o nolock
5、提示:mount to NFS server '172.20.67.203' failed: server is down.
解决方案:可能是NFS服务器的防火墙有问题;
6、提示:mount: RPC: Timed out
解决方案:由于RPC协议没运行;启动portmap服务;
也有可能是防火墙问题;Server/Client均有可能。
Linux中的nfs服务:http://www.linuxdiyf.com/linux/11993.html
在Linux下配置tftp服务器和nfs服务器:http://www.linuxdiyf.com/linux/10681.html
Ubuntu Linux通过NFS设置共享文件夹简单设置:http://www.linuxdiyf.com/linux/10826.html
Linux NFS服务配置:http://www.linuxdiyf.com/linux/5467.html
VMware中为Ubuntu安装配置nfs服务:http://www.linuxdiyf.com/linux/8443.html