Posts Tagged: inode

Locating Excessive Inode Usage

The command to list the directories using the most inodes is: find . -printf “%h\n” | cut -d/ -f-2 | sort | uniq -c | sort -rn However, I first needed to narrow down the directory under root that might be causing the problem: df -i showed that the root directory (/) was the problem…. Read more »