博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Linux存储挂载后,无法正常卸载的解决方法
阅读量:6580 次
发布时间:2019-06-24

本文共 701 字,大约阅读时间需要 2 分钟。

hot3.png

明明设备没有任何人在操作,却无法使用umount正常卸载

# umount /dev/sdd1

umount: /TomcatLog: device is busy.
        (In some cases useful info about processes that use

         the device is found by lsof(8) or fuser(1))

umount -f 强制卸载也是无能为力

[root@gj2 ~]# umount -f /TomcatLog
umount2: Device or resource busy
umount: /TomcatLog: device is busy.
        (In some cases useful info about processes that use
         the device is found by lsof(8) or fuser(1))

umount2: Device or resource busy

解决方法:

# fuser -cu /TomcatLog/

/TomcatLog/:          9590c(root)

# fuser -ck /TomcatLog/

# umount /TomcatLog

可以正常卸载了。

说明:

-c表示显示所有挂载该设备的进程;

-u表示显示正在操作该设备的用户名;

-k表示杀死所有访问该设备的进程(注意:这将杀死访问该设备的进程,如果有其他设备也在用这个进程,记得卸载后重启该服务进程避免影响正常业务);

转载于:https://my.oschina.net/lionel45/blog/617138

你可能感兴趣的文章
javascript reverse string
查看>>
南阳oj 题目6 喷水装置(一)
查看>>
运筹学上机实验 - 单纯形方法的两阶段法
查看>>
CF294C Shaass and Lights
查看>>
oracle 11g 报错记录
查看>>
文件状态是否变化
查看>>
MongoDB的副本集Replica Set
查看>>
Maven项目中的配置文件找不到以及打包问题
查看>>
面向对象
查看>>
HDU 1058 Humble Numbers
查看>>
NYOJ The Triangle
查看>>
wps10.1中将txt转为excel
查看>>
并发同步知多少
查看>>
解决执行脚本报syntax error: unexpected end of file或syntax error near unexpected token `fi'错误的问题...
查看>>
[BZOJ3312][USACO]不找零(状压DP)
查看>>
gtp转换mbr
查看>>
django rest framework
查看>>
poj1985 求树的直径
查看>>
Python PyPI中国镜像
查看>>
centos 设置静态IP
查看>>