下面是 df 命令的输出
# df /boot
Filesystem 1K-blocks Used Available Use% Mounted on
/dev/sda2 122835 26732 89550 23% /boot
看起来
Used = 1K-blocks - Available - Reserved
可以使用以下命令检索保留的位置:
tune2fs -l /dev/sda2 | egrep "Block size:|Reserved block count"
Reserved block count: 6553
Block size: 1024
但无法理解 Use% 是如何计算的。不应该只是:
(Used / 1K-blocks) * 100
或者
(1K-blocks - Available)/(1K-blocks) * 100
“使用百分比”是这样计算的: