问题描述:
因为挂载错了,想取消挂载,但是umount报告如下错误:
[root@zabbix /]# umount /dev/sdc1
umount: /data1: target is busy.
(In some cases useful info about processes that use
the device is found by lsof() or fuser())
根据描述应该其他进程对挂载的目录有占用的情况
解决方案:
关闭占用的进程,但是在使用fuser命令的时候显示没有这个命令
[root@zabbix /]# fuser -m /dev/sdc1
-bash: fuser: command not found
然后需要安装一下:
[root@zabbix /]# yum install -y psmisc
再去使用fuser命令查看进程:
[root@zabbix /]# fuser -m /dev/sdc1
/dev/sdc1: 10246c
[root@zabbix /]# ps aux | grep
root 0.0 0.0 pts/ Ss+ Oct19 : -bash
使用kill命令关闭进程:
[root@zabbix /]# kill -
关闭进程以后再umount就成功了:
[root@zabbix /]# umount /dev/sdc1
最后可以使用df -h查看挂载情况,会发现已经取消挂载成功!