在嵌入式linux开发中,经常需要mount .. nfs ...。有时会遇到 :
nfs: server 192.168.0.3 not responding, still trying 这个问题。
其命令为 :mount -t nfs -o nolock 192.168.1.200:/work /mnt
这个是因为 mount nfs 时,nfs 默认使用的是udp 协议。
解决方法:
mount -t nfs -o nolock,vers=2 192.168.1.200:/work /mnt
阅读(369) | 评论(0) | 转发(0) |