linux nfs客户端开启失败解决办法

转自 https://blog.csdn.net/yihui8/article/details/43702603

首先看看有没有设置好挂载点

showmount -e

然后打开nfs服务

/etc/init.d/nfs-kernel-server status

出现这样的界面算是成功了

客户端输入 (第一个 /share 是linux本地目录  第二个  /share 是开发板目录,前面的地址是linux本地机器)

mount -t nfs 192.168.136.85:/share /share

提示失败,显示这么一句话:

svc: failed to register lockdv1 RPC service (errno 111).

然后输入

mount -t nfs -o nolock 192.168.136.85:/share /share

既可解决

原文地址:https://www.cnblogs.com/qifeng1024/p/13500312.html