Linux-NFS磁盘共享

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

你可能感兴趣的:(Linux-NFS磁盘共享)