Skip to content

Latest commit

 

History

History
13 lines (9 loc) · 230 Bytes

07磁盘占用异常排查.md

File metadata and controls

13 lines (9 loc) · 230 Bytes

磁盘占用异常排查

#查找
du -m --max-depth=1 |sort -gr

lsof |grep delete

#删除
lsof |grep delete|awk '{print $2}'|xargs -n1 kill -9