Inodes: Difference between revisions

From DWIKI
(Created page with "=Links= *[https://www.stackscale.com/blog/inodes-linux/ Inodes in Linux]")
 
mNo edit summary
 
(One intermediate revision by the same user not shown)
Line 2: Line 2:


*[https://www.stackscale.com/blog/inodes-linux/ Inodes in Linux]
*[https://www.stackscale.com/blog/inodes-linux/ Inodes in Linux]
=HOWTO=
==Count inode usage==
find . -printf "%h\n" | cut -d/ -f-2 | sort | uniq -c | sort -rn
==Show inodes per filesystem==
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