Inodes: Difference between revisions

From DWIKI
(Created page with "=Links= *[https://www.stackscale.com/blog/inodes-linux/ Inodes in Linux]")
 
mNo edit summary
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

Revision as of 13:10, 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