为什么 df 和 df -h 显示不同的值? df -h 如何进行计算?

为什么 df 和 df -h 显示不同的值? df -h 如何进行计算?

df -h 到底是如何工作的?如果我运行df,我会得到这个:

Filesystem     1K-blocks    Used Available Use% Mounted on
/dev/simfs      41943040 7659828  34283212  19% /

如果我运行df -h,我会得到这个:

Filesystem      Size  Used Avail Use% Mounted on
/dev/simfs       40G  7.4G   33G  19% /

问题是如何获得相同的数字?

41943040 / 1024 / 1024 = 40 好吧,我们把其他的除以 1024。

7659828 / 1024 / 1024 = 7,304981

那么也许是1000?

7659828 / 1000 / 1000 = 7,659828

df -h7.4G怎么来的?

34283212 / 1024 / 1024 = 32,695, which is ±33G

虽然 df 是开源的,但我已经克隆的回购并检查了代码。这就是我发现的:

for (col = 0; col < ncolumns; col++)
    {
      char *cell = NULL;
      char const *header = _(columns[col]->caption);

      if (columns[col]->field == SIZE_FIELD
          && (header_mode == DEFAULT_MODE
              || (header_mode == OUTPUT_MODE
                  && !(human_output_opts & human_autoscale))))
        {
          char buf[LONGEST_HUMAN_READABLE + 1];

          int opts = (human_suppress_point_zero
                      | human_autoscale | human_SI
                      | (human_output_opts
                         & (human_group_digits | human_base_1024 | human_B)));

          /* Prefer the base that makes the human-readable value more exact,
             if there is a difference.  */

          uintmax_t q1000 = output_block_size;
          uintmax_t q1024 = output_block_size;
          bool divisible_by_1000;
          bool divisible_by_1024;

          do
            {
              divisible_by_1000 = q1000 % 1000 == 0;  q1000 /= 1000;
              divisible_by_1024 = q1024 % 1024 == 0;  q1024 /= 1024;
            }
          while (divisible_by_1000 & divisible_by_1024);

          if (divisible_by_1000 < divisible_by_1024)
            opts |= human_base_1024;
          if (divisible_by_1024 < divisible_by_1000)
            opts &= ~human_base_1024;
          if (! (opts & human_base_1024))
            opts |= human_B;

          char *num = human_readable (output_block_size, buf, opts, 1, 1);

          /* Reset the header back to the default in OUTPUT_MODE.  */
          header = _("blocks");

          /* TRANSLATORS: this is the "1K-blocks" header in "df" output.  */
          if (asprintf (&cell, _("%s-%s"), num, header) == -1)
            cell = NULL;
        }
      else if (header_mode == POSIX_MODE && columns[col]->field == SIZE_FIELD)
        {
          char buf[INT_BUFSIZE_BOUND (uintmax_t)];
          char *num = umaxtostr (output_block_size, buf);

          /* TRANSLATORS: this is the "1024-blocks" header in "df -P".  */
          if (asprintf (&cell, _("%s-%s"), num, header) == -1)
            cell = NULL;
        }
      else
        cell = strdup (header);

      if (!cell)
        xalloc_die ();

      hide_problematic_chars (cell);

      table[nrows - 1][col] = cell;

      columns[col]->width = MAX (columns[col]->width, mbswidth (cell, 0));
    }

我没有使用这种语言的经验,但据我了解,它会尝试检查每列上的值是否可被 1024 或 1000 整除,并选择更好的值来呈现选项的值-h。但无论除以 1000 还是 1024,我都得不到相同的值。为什么?

我想我知道为什么。它检查除以 1000 或 1024每个分配。

          if (divisible_by_1000 < divisible_by_1024)
            opts |= human_base_1024;
          if (divisible_by_1024 < divisible_by_1000)
            opts &= ~human_base_1024;
          if (! (opts & human_base_1024))
            opts |= human_B;

所以我们来破解 7659828 / 1024 / 1024 = 7,304981。-h给出了答案7.4G

7659828 / 1024 = 7480,xxx
7659828 / 1000 = 7659,xxx

7659 比 7480 除以 1024。

数字还是很大,我们继续:

7659828 / 1024 / 1024 = 7,xxx  (7,3049..)
7659828 / 1024 / 1000 = 7,xxx  (7,4803..)

现在需要 1000,给出 7,48,我相信在代码中的某个地方,它会向下舍入,因此“最好说少而不是多”,虽然您可以放入 7.4G 数据,但不能放入 7.5G。

33.4G 的情况相同

34283212 / 1024 / 1000 = 33.47...

于是就变成了33G。

答案1

您发布的代码来自函数“get_header”,它生成第一行中的文本。在您的情况下,这适用于标题“1K-blocks”(致电df -B1023查看差异)。

需要注意的是:“1K”指的是 1024 字节块,而不是 1000 字节块(用“1kB-blocks”表示,请参阅df -B1000

人类可读格式的数字计算由函数“ human_read” ( human.c:153 ) 处理。在 df.c:1571 中,您可以找到使用以下标志调用时使用的选项-h

case 'h':
    human_output_opts = human_autoscale | human_SI | human_base_1024;
    output_block_size = 1;
    break;

所有计算均以人类可读格式(“-h”)以 1024 为基数完成。除了显示的 human_output_opts 之外,还有一个适用于此处的默认设置(请参阅 human.h,枚举声明):

/* The following three options are mutually exclusive.  */
/* Round to plus infinity (default).  */
human_ceiling = 0,
/* Round to nearest, ties to even.  */
human_round_to_nearest = 1,
/* Round to minus infinity.  */
human_floor = 2,

由于 human_output_opts 不包括 human_round_to_nearest 或 human_floor,因此它将使用其默认值 human_ceiling。因此,所有计算值都将向上舍入。

为了验证设置,我们可以尝试根据以下 1K 块计算人类可读格式df

Size = ceil(41943040/1024/1024) = ceil(40) = 40
Used = ceil(7659828/1024/1024) = ceil(7.305) = 7.4
Available = ceil(34283212/1024/1024) = ceil(32.695) = 33

这与 的输出相同df -h

(...如果您喜欢 1000 字节格式,您可以简单地调用df -H)。

答案2

dfFreeBSD 的程序(这是df -h最初的来源)和Solaris 的实现都没有df这样做。

由于 Solaris 源是 OpenSource,您可以检查是否可以df在您的操作系统上编译:

相关内容