LIUNX inode space saturation, exhaustion check, solution

The strange problems caused by LIUNX inode space saturation and the solutions

Today svn suddenly broke a strange question. Can't open ' * .tmp': No space left on device

Command: df -i
found to be caused by the saturation problem inode
Write a picture description here
inode is what
good inode are filled quickly solve it
by using the command (online sticky): for i in ./*; do echo $i; find $i | wc -l; done
Write a picture description here
step by step to find the folder that contains a large number of files (after finding first determine whether this folder you can delete !!!!!!! If so he will be able to delete)
delete command: find the folder path -type f |xargs rm -rf
I found it right here
/ var / spool / postfix / maildrop folder checked the files in this folder are there are regular task generated useless anyway, is that you can delete
after deleting the inode release 80% of the space, solve the problem
as to how to avoid / var / spool / postfix / maildrop continue to grow a lot,: look surprise

Published 17 original articles · won 24 · views 280,000 +

Guess you like

Origin blog.csdn.net/qq_22956867/article/details/70860158