文章目录
一、解决方案
# 使用fuser 查询到端口号
[root@ecs-431f-0001 test]# fuser -v -m /test/
USER PID ACCESS COMMAND
/test: root kernel mount /test
root 1365204 ..c.. bash
#通过PID查到对应的进程
[root@ecs-431f-0001 test]# ps -ef |grep 1365204c
root 1365671 1365204 0 18:06 pts/0 00:00:00 grep --color=auto 1365204c
# 可能会遇到问题,杀完当前进程也就结束了Linux的总的进程
[root@ecs-431f-0001 test]# kill -9 1365204
# 在进行查看 ,如果是这样的话 就可以进行挂载解除
[root@ecs-431f-0001 ~]# fuser -v -m /test/
USER PID ACCESS COMMAND
/test: root kernel mount /test
[root@ecs-431f-0001 ~]# umount -i /test
这次进行查看,如果若下图的界面提示 说明解除成功