Below is an output of df command
# df /boot
Filesystem 1K-blocks Used Available Use% Mounted on
/dev/sda2 122835 26732 89550 23% /boot
I cannot figure out how the "Available" column is calculated. It doesn't equal:
1K-blocks - Used
It seems about equal:
(1K-blocks - Used) - ((1K-blocks) * 5 / 100)
My question is, how is the "Available" column calculated?