umount强制卸载不起作用,卸载光驱终极办法---fuser

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了umount强制卸载不起作用,卸载光驱终极办法---fuser相关的知识,希望对你有一定的参考价值。

在Centos7.2系统下卸载光驱,用强制卸载不起作用

[[email protected] ~]# umount -f /mnt/
umount: /mnt: target is busy.
(In some cases useful info about processes that use
the device is found by lsof(8) or fuser(1))

使用fuser命令,先确认有那些进程需要杀掉

[[email protected] ~]# fuser -cu /mnt

/mnt: 15060c(root)

其次向进程发出SIGKILL信号

[[email protected] ~]# fuser -ck /mnt

/mnt: 15060c

确认

[[email protected] ~]# fuser -c /mnt

[1]+ Killed dd if=1g of=/dev/null bs=1M (wd: /mnt)

(wd now: /)

以上是关于umount强制卸载不起作用,卸载光驱终极办法---fuser的主要内容,如果未能解决你的问题,请参考以下文章

umount 强制卸载

测试人员学linux(十) : 进阶命令

测试人员学linux(十) : 进阶命令

Linux运维之如何查看目录被哪些进程所占用,lsof命令

Centos无法卸载时处理办法

umount 提示 device is busy