码迷,mamicode.com
首页 > 系统相关 > 详细

linux中U盘umonut时出现“Device is busy”的解决方法

时间:2015-04-23 19:27:22      阅读:213      评论:0      收藏:0      [点我收藏+]

标签:

问题:

#umount /dev/sda1

umount: /mnt/usb: device is busy

 

查找占用目录进程:

 

#lsof |grep /mnt/usb

bash 1971 root cwd DIR 8,1 16384 1 /mnt/usb/
bash 2342 root 3r DIR 8,1 16384 1 /mnt/usb/

 

杀掉进程:

 

#kill -9 1971

#kill -9 2342

 

卸载:

#umount /mnt/usb

linux中U盘umonut时出现“Device is busy”的解决方法

标签:

原文地址:http://www.cnblogs.com/kluan/p/4451274.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!