Linux找不到占空间的大文件解决方法

Linux找不到占空间的大文件解决方法

背景

磁盘使用率爆满,但是未定位到目录

 du -sh ./* --exclude="data"  --exclude="proc"

定位

使用 lsof 找到删除的文件,可以发现已经占用 230g 左右(根据下方的字节单位换算的)

lsof -n |grep delete |grep -v data

enter description here

重启对应进程解决即可

systemctl restart mallard2-agent.service

参考文档:https://blog.csdn.net/qq_40907977/article/details/109305200

posted @ 2022-04-01 17:34  鸣昊  阅读(528)  评论(0编辑  收藏  举报