df -h卡死

查看磁盘空间时,执行 df -h 时,命令 hang 住了,一直没有反应!

这种问题,大概率是由于 mount 的目录被删除了,但是没有提前执行 umount 操作,因此报错!

解决方案:

查看 /etc/fstab 文件中是否有 mount 相关的目录,使用 umount -l 命令卸载无效挂载目录。

[root@mes-rac01 soft]# umount -l /backup

##umount -l解释
-l, --lazy              detach the filesystem now, and cleanup all later

 

posted @ 2023-01-31 13:42  John_2011  阅读(71)  评论(0编辑  收藏  举报