Skip to content

Instantly share code, notes, and snippets.

@RoesWibowo
Created July 5, 2017 09:54
Show Gist options
  • Save RoesWibowo/82fd7b9af1375c103abfda0803e3456f to your computer and use it in GitHub Desktop.
Save RoesWibowo/82fd7b9af1375c103abfda0803e3456f to your computer and use it in GitHub Desktop.
Command inode Ubuntu
# try to find if this is an inodes problem
df -ih
# find list directories of inode
du --inodes -d 3 /home/htdocs | sort -n | tail
# try to find root folders with large inodes count
for i in /*; do echo $i; find $i |wc -l; done
# try to find specific folders:
for i in /src/*; do echo $i; find $i |wc -l; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment