Inodes: Difference between revisions

From DWIKI
mNo edit summary
mNo edit summary
 
Line 7: Line 7:
  find . -printf "%h\n" | cut -d/ -f-2 | sort | uniq -c | sort -rn
  find . -printf "%h\n" | cut -d/ -f-2 | sort | uniq -c | sort -rn


==Show inodes per filesystem=
==Show inodes per filesystem==
  df -i
  df -i

Latest revision as of 13:11, 2 January 2023

Links

HOWTO

Count inode usage

find . -printf "%h\n" | cut -d/ -f-2 | sort | uniq -c | sort -rn

Show inodes per filesystem

df -i