NFS错误排解:按步骤来!
service rpcbind start (or service portmap start)
service nfs-common start
server nfs-server start
NFS错误排解:说说具体的!
错误类型1:
rpcbind: server localhost not responding, timed out RPC: failed to contact local rpcbind server (errno 5). lockd_up: makesock failed, error=-5 rpcbind: server localhost not responding, timed out RPC: failed to contact local rpcbind server (errno 5). mount: mounting 10.0.3.244:/long_nfs on /tmp/ failed: Input/output error
请加上挂载选项-o nolock:
mount -o nolock -t nfs 10.42.43.1:/home/lesca/ARM/ /lesca/nfs
错误类型2:
cs89x0: Tx buffer not free! NETDEV WATCHDOG: eth0: transmit timed out eth0: transmit timed out, IRQ conflict ?? eth0: transmit underrun
这个问题是因为主机和目标板没有用网线连接
错误类型3:
nfs: server <server_name> not responding, still trying nfs: server <server_name> not responding, still trying nfs: server <server_name> not responding, still trying nfs: server <server_name> not responding, still trying nfs: server <server_name> not responding, still trying
这主要是由于服务器端繁忙、网络拥塞或者网卡丢包引起的。
References:[3] guillomovitch – What about doing things in order
====
http://lesca.me/blog/2011/02/28/nfs-mounting-troubleshot/