首页 > 其他 > 详细

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

时间:2019-06-20 13:54:56      阅读:98      评论:0      收藏:0      [点我收藏+]

卸载挂载的盘提示如下:

[root@web2-server yum.repos.d]# umount /mnt/cdrom/
umount: /mnt/cdrom: device is busy.
(In some cases useful info about processes that use
the device is found by lsof(8) or fuser(1))
[root@web2-server yum.repos.d]# umount /mnt/cdrom/ -f //强制卸载也不行
umount2: 设备或资源忙
umount: /mnt/cdrom: device is busy.
(In some cases useful info about processes that use
the device is found by lsof(8) or fuser(1))
umount2: 设备或资源忙
[root@web2-server yum.repos.d]# fuser -m /mnt/cdrom/
/mnt/cdrom/: 1338c 5830c //占用进程pid

#fuser -m -k /mnt/cdrom/
 //或者查询后直接杀死进程 后面的2步就不需要执行了
[root@web2-server yum.repos.d]# ps aux |grep 1338  //查看占用进程
root 1338 0.0 0.2 108292 1912 pts/2 Ss+ 14:27 0:00 -bash
root 1423 0.0 0.1 103236 884 pts/1 S+ 14:49 0:00 grep 1338

# 在使用kill 杀掉进程

 

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

原文:https://www.cnblogs.com/galsnag/p/11058256.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!