了解 df 命令输出

了解 df 命令输出

以下是 df 命令的输出

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

我不知道“可用”列是如何计算的。它不等于:

 1K-blocks - Used

看起来大致相等:

(1K-blocks - Used) - ((1K-blocks) * 5 / 100)

我的问题是,“可用”列是如何计算的?

答案1

“可用”列计算正确。它显示可用空间。

ext4分区默认为root系统服务保留 5% 的空间。

您可以通过实用程序进行检查tune2fs

因此,可用空间等于所有空间减去已用空间再减去 5% 是正确的。

相关内容