mount -t nfs *.*.*.*:/somewhere /somewhere时提示:
rpcbind:server localhost not responding,timeout...
RPC:failed to contact local rpcbind server (error 5)
的解决办法是:
添加参数-o nolock
mount -t nfs -o nolock *.*.*.*:/somewhere /somewhere.
安装bridge-utils:
tar zxvf bridge-utils-1.4.tar.gz
cd bridge-utils-1.4
autoconf
./configure
make
make install
...
本文介绍了解决在使用NFS进行文件系统挂载时遇到的rpcbind未响应错误的方法。通过添加-onolock参数来避免锁问题,并提供了一种通过安装bridge-utils工具包来进一步调试或解决问题的方案。

1405

被折叠的 条评论
为什么被折叠?



