inode用尽,系统报Job for tomcat.servic
2022-05-19 本文已影响0人
与狼共舞666
image.png
解决办法:逐一查看各级目录,确定文件数较多的目录
for i in ./*; do echo $i; sudo find $i | wc -l; done
find 确定的目录 -type f -name '*' -print0 | xargs -0 rm
image.png
解决办法:逐一查看各级目录,确定文件数较多的目录
for i in ./*; do echo $i; sudo find $i | wc -l; done
find 确定的目录 -type f -name '*' -print0 | xargs -0 rm