centos7执行umount提示:device is busy或者target is busy解决方法
Posted sungeek
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了centos7执行umount提示:device is busy或者target is busy解决方法相关的知识,希望对你有一定的参考价值。
问题描述:
因为挂载错了,想取消挂载,但是umount报告如下错误:
[[email protected] /]# umount /dev/sdc1 umount: /data1: 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 -m /dev/sdc1 -bash: fuser: command not found
然后需要安装一下:
[[email protected] /]# yum install -y psmisc
再去使用fuser命令查看进程:
[[email protected] /]# fuser -m /dev/sdc1 /dev/sdc1: 10246c
[[email protected] /]# ps aux | grep 10246 root 10246 0.0 0.0 116460 3212 pts/0 Ss+ Oct19 0:00 -bash
使用kill命令关闭进程:
[[email protected] /]# kill -9 10246
关闭进程以后再umount就成功了:
[[email protected] /]# umount /dev/sdc1
最后可以使用df -h查看挂载情况,会发现已经取消挂载成功!
以上是关于centos7执行umount提示:device is busy或者target is busy解决方法的主要内容,如果未能解决你的问题,请参考以下文章
执行umount 的时候却提示:device is busy 的处理方法