AIX 下出现umount busy | 处理

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了AIX 下出现umount busy | 处理相关的知识,希望对你有一定的参考价值。

如果一个文件系统打开了一个文件,那么必须在卸载之前将该文件关闭。例如:

# umount /oracle

umount: 0506-349 Cannot unmount /dev/oracle_lv: The requested resource is busy.


如果显示umount busy


执行fuser -kux /oracle问题解决。



用如下命令

# fuser -x -c /oracle

/oracle: 11630


# ps -fp 11630

UID PID PPID C STIME TTY TIME CMD

guest 11630 14992 0 16:44:51 pts/1 0:00 -sh


# kill -1 11630

# umount /oracle


或者

终止使用给定文件系统的所有进程:

fuser -k -x -u -c /oracle

fuser -kxuc /oracle


以上是关于AIX 下出现umount busy | 处理的主要内容,如果未能解决你的问题,请参考以下文章

执行umount 的时候却提示:device is busy 的处理方法

使用umount /mnt/usb命令的时候出现device is busy这样的语句

Linux umount设备时出现device is busy解决方法

umount 时出现的 "Device is busy"问题

linux,卸载文件系统的时候,报busy情况的解决记录

用fuser或者lsof解决无法umount问题(device is busy)