轉自 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
既可解決