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的主要内容,如果未能解决你的问题,请参考以下文章