了解 df 命令输出的 Use% 列

了解 df 命令输出的 Use% 列

以下是 df 命令的输出

# df /boot
Filesystem     1K-blocks   Used     Available Use%  Mounted on
/dev/sda2         122835  26732     89550     23%   /boot

看起来

Used =  1K-blocks - Available - Reserved

其中,可以使用以下命令检索 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

答案1

“使用率”的计算方式如下:

Used / ( Used + Available ) * 100 %

相关内容