首页 > 代码库 > 执行umount 命令的时候出现 device is busy

执行umount 命令的时候出现 device is busy

执行umount 命令的时候出现 device is busy ,有人在使用这块磁盘umount /dev/sde1umount: /u01/app/oracle: device is busyumount: /u01/app/oracle: device is busy使用fuser 命令查看哪个进程在使用[root@localhost ~]# fuser -m /u01/app/oracle//u01/app/oracle/:     2636c  2694c[root@localhost ~]# ps aux | grep 2636root      2636  0.0  0.2   4532  1464 pts/1    S    09:56   0:00 bashroot      2776  0.0  0.1   3916   696 pts/1    R+   10:18   0:00 grep 2636kill -9 干掉进程[root@localhost ~]# kill -9 2636[root@localhost ~]# umount /dev/sde1

 

执行umount 命令的时候出现 device is busy