Skip to content

Commit

Permalink
Create df - Inodes.md
Browse files Browse the repository at this point in the history
  • Loading branch information
lwindolf authored Aug 19, 2024
1 parent c8cfe33 commit 3d61973
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions runbooks/df - Inodes.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
This runbook is about analyzing out of inodes disk usage issues.

## Preparation

Determine mount point that is full from

df -i

Watch out for the `IUse%` column being above 90%.

## Find directories with the most files

Solutions from [shellhacks.com](https://www.shellhacks.com/how-to-check-inode-usage-in-linux/):

{ find / -xdev -printf '%h\n' | sort | uniq -c | sort -rn; } 2>/dev/null | head

0 comments on commit 3d61973

Please sign in to comment.