Stackoverflow'da bununla ilgili "How to fix all inodes being in use? [closed]" başlığını incelemenizi öneririm.


I had a similar issue, I found out the files piling up under one specific directory using this command-
$find . -xdev -type f | cut -d "/" -f 2 | sort | uniq -c | sort -n
and eventually you can get to a path where you have a dir holding numerous file.
One solution is to just delete all the files under this tmp to free up inodes. But I think you would like to triage further.
Hope it helps