Supersize me! Does your ext4 file system report as being full, yet you know it is not.

home | blog | Terrible people and places | Covid-19 links | Teh Internet | guest blog |rants | placeholder | political | projects | Gwen and Liam | Citadel patched | Tools | Scouts




In the new world of vm's and undersized disks, this will probably be an issue.
First make sure you are not within the margin of reserved disk space for the superuser (if it was created that way).
Usual defaults are around 5%.
Next, check your inodes. No inodes, no writes will happen.
df -i

- to check where the biggest usage is:
find / -xdev -printf '%h\n' | sort | uniq -c | sort -k 1 -n


- attribution of the find command above goes to: http://unix.stackexchange.com/users/4358/patrick

You might also want to check for deleted files that processes have open.
lsof +L1

You might have a few big ones hanging around.



[æ]