umount.nfs4: /mnt: device is bus
2020-07-29 本文已影响0人
木头_95b3
取消挂载报错:
[root@localhost ~ 14:02:51]#umount /mnt/
umount.nfs4: /mnt: device is busy
原因就是挂载的目录被其它进程占用了,需要找出占用的进程,杀掉;再umount 就可以了
需要用到 fuser 命令,如果没有就安装一下
yum install -y psmisc
查看挂载目录被谁占用了:
[root@localhost ~ 14:02:00]#fuser -m -v /mnt/
用户 进程号 权限 命令
/mnt: root kernel mount /mnt
root 4848 ..c.. bash
使用kill -9 结束占用挂载进程
[root@localhost / 14:13:57]#kill -9 4848
再执行umount卸载命令就可以了:
[root@localhost / 14:14:08]#umount /mnt