RH AS Linux4
前天的时候在根目录试了一下,umount挂载硬盘时,还是提示设备忙,但是fuser /u02/时,无占用进程,我们的硬盘是关机之后就自动umount了
我现在把服务关掉给大家演示一下
[root@prod /]# umount /dev/sdb1
umount: /u01: device is busy
umount: /u01: device is busy
[root@prod /]# fuser /u01/
/u01/:
[root@prod /]#
ps -ef |grep u01
root 425 32049 0 12:50 pts/2 00:00:00 grep u01
最后没有办法,就使用
umount -l /u01
OK,总算下来了。
JinXian 于 2007-10-24 22:06:50发表:
受教了