Show total inode usage on Linux devices:
df -ih
Easy way to find and list directories containing most of the file system inodes on Linux (only under the current working directory), running this command will take some time on large drives):
sudo find . -xdev -type f | cut -d "/" -f 2 | sort | uniq -c | sort -n