umount.nfs: /mnt: device is busy解决

今天使用nfs后突然不能umount了,纠结了五分钟后,突然找到了原因。

如下:

[root@localhost /]# umount /mnt
umount.nfs: /mnt: device is busy
umount.nfs: /mnt: device is busy
[root@localhost /]# exit
logout
[quota2@localhost /]$ exit
exit
[root@localhost quota2]# cd ..
[root@localhost mnt]# cd ..
[root@localhost /]# umount /mnt
[root@localhost /]#

坑呢。。

原理是很简单,因为之前的root用户还在用呢,后面来的root当然不能umount了。支持多用户的linux真是调皮又可爱呢~

umount不了的原因一般是由于有程序有用户在占用,比如有客正在该目录操作,比如上面的情况等等,以后再umount不了的情况,我还会继续编辑。


刚参考到http://blog.csdn.net/xiao2005new/article/details/6746736,如下:

卸载nfs挂载的方法

#umount  /mnt/nfs 可能会出现device is busy的问题。

解决方法:

1.      首先查找谁在占用:#fuser /mnt/nfs 得到进程号。

2.      查找进程:#ps –ef|grep 进程号。

3.      杀死进程:#kill -9 进程号

4.      然后umount ,如不行 umount –f /mnt/nfs强行卸载。

5.      再不行重新启动nfsd,再执行上述命令umount文件系统。


你可能感兴趣的:(系统服务)