Linux_开发板通过NFS挂载到虚拟机的几个错误解决
这两天用想用开发板挂载到虚拟机的nfs服务器上,一直失败,错误提示为mount: mounting 192.168.134.198:/home/SKZH/Arm on /mnt failed: Input/output error然后找同学的机器挂在也无法挂载上,说明服务器出了问题,nfs服务器打开,防火墙也关了,于是就去查看了一下日志。cat /var/log/messages | grep m
·
这两天用想用开发板挂载到虚拟机的nfs服务器上,一直失败,错误提示为
mount: mounting 192.168.134.198:/home/SKZH/Arm on /mnt failed: Input/output error
然后找同学的机器挂在也无法挂载上,说明服务器出了问题,nfs服务器打开,防火墙也关了,于是就去查看了一下日志。
cat /var/log/messages | grep mount
里面出现
connect from 192.168.134.211 denied: request from unauthorized host
说明板子被拒绝了,把板子的网段加入到允许列表里
vim /etc/hosts.allow
里面加上192.168.134.即可
再次挂载,却出现了
mounting 192.168.134.198:/home/SKZH/Arm on /mnt failed: Connection refused
百度了一下需要加上-o nolock参数才行,加上后挂在成功。
更多推荐
已为社区贡献1条内容
所有评论(0)