记录nfs挂在失败的问题:
挂在命令:mount -t nfs -o nolock,vers=3 192.168.1.19:/home/book/nfs_rootfs /mnt
- ERROR:
mount: mounting 192.168.1.19:/home/book/nfs_rootfs on /mnt failed: No route to host
- resolve:
首先,你的网络是桥接模式,我开始NAT模式,导致一直出现这个问题。
其次,保证ubuntu防火墙是关闭的,开始执行systemctl status firewalld.service,显示报错,原因是未安装防火墙软件
sudo apt-get install firewalld firewall-config // sudo yum install firewalld firewall-config
service firewalld stop 关闭 // 似乎重启后,防火墙是自动打开的,所以每次开ubuntu要重新关闭一下
最后,挂载,mount -t nfs -o nolock,vers=3 192.168.1.19:/home/book/nfs_rootfs /mnt。 竟然出现了新的问题。心态崩了呀
- ERROR:
mount: mounting 192.168.1.19:/home/book/nfs_rootfs on /mnt failed: Device or resource busy
resolve:
已经挂载成功了,在执行会出现这种情况,或:umount /mnt后,重新挂在
Question:
挂载成功后,ls依然没有找到mnt目录,原因pwd查看当前目录未/root,cd / 回到根目录,就可以找到mnt文件夹了