umount device is busy
可能是nfs服务未启动
service nfs status
service nfs restart
客户端和服务端都需要执行
服务端:
vi /etc/exports
/home/test_data customerIp/24(rw,sync,fsid=0,no_root_squash,no_all_squash)
exportfs -rv
客户端
mount -t nfs serverIp:/home/test_data /home/test_data
网友评论