Created
July 5, 2017 09:54
-
-
Save RoesWibowo/82fd7b9af1375c103abfda0803e3456f to your computer and use it in GitHub Desktop.
Command inode Ubuntu
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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