AskOverflow.Dev

AskOverflow.Dev Logo AskOverflow.Dev Logo

AskOverflow.Dev Navigation

  • 主页
  • 系统&网络
  • Ubuntu
  • Unix
  • DBA
  • Computer
  • Coding
  • LangChain

Mobile menu

Close
  • 主页
  • 系统&网络
    • 最新
    • 热门
    • 标签
  • Ubuntu
    • 最新
    • 热门
    • 标签
  • Unix
    • 最新
    • 标签
  • DBA
    • 最新
    • 标签
  • Computer
    • 最新
    • 标签
  • Coding
    • 最新
    • 标签
主页 / unix / 问题 / 446999
Accepted
Lukas Liesis
Lukas Liesis
Asked: 2018-05-31 13:42:18 +0800 CST2018-05-31 13:42:18 +0800 CST 2018-05-31 13:42:18 +0800 CST

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

  • 772

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 是开源的,但我已经克隆了 repo 并检查了代码。这就是我发现的:

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。

coreutils disk-usage
  • 2 2 个回答
  • 3407 Views

2 个回答

  • Voted
  1. Best Answer
    M2C8
    2018-06-01T02:49:39+08:002018-06-01T02:49:39+08:00

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

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

    人类可读格式的数字计算由函数“human_readable”(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)。

    • 6
  2. schily
    2018-06-01T02:34:50+08:002018-06-01T02:34:50+08:00

    df来自 FreeBSD的程序(这df -h是最初的来源)和df来自 Solaris 的实现都不是这种方式。

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

    • 0

相关问题

  • 如何使用df计算总磁盘空间?

  • 使用 DD 在外部读取器中写入原始磁盘时出现磁盘空间错误?

  • 如何提高磁盘空间使用率?

  • 具有更细粒度的人类可读的“du”

  • 除了完全使用的文件夹之外,“设备上没有剩余空间”的其他原因是什么?

Sidebar

Stats

  • 问题 205573
  • 回答 270741
  • 最佳答案 135370
  • 用户 68524
  • 热门
  • 回答
  • Marko Smith

    如何将 GPG 私钥和公钥导出到文件

    • 4 个回答
  • Marko Smith

    ssh 无法协商:“找不到匹配的密码”,正在拒绝 cbc

    • 4 个回答
  • Marko Smith

    我们如何运行存储在变量中的命令?

    • 5 个回答
  • Marko Smith

    如何配置 systemd-resolved 和 systemd-networkd 以使用本地 DNS 服务器来解析本地域和远程 DNS 服务器来解析远程域?

    • 3 个回答
  • Marko Smith

    如何卸载内核模块“nvidia-drm”?

    • 13 个回答
  • Marko Smith

    dist-upgrade 后 Kali Linux 中的 apt-get update 错误 [重复]

    • 2 个回答
  • Marko Smith

    如何从 systemctl 服务日志中查看最新的 x 行

    • 5 个回答
  • Marko Smith

    Nano - 跳转到文件末尾

    • 8 个回答
  • Marko Smith

    grub 错误:你需要先加载内核

    • 4 个回答
  • Marko Smith

    如何下载软件包而不是使用 apt-get 命令安装它?

    • 7 个回答
  • Martin Hope
    rocky 如何将 GPG 私钥和公钥导出到文件 2018-11-16 05:36:15 +0800 CST
  • Martin Hope
    Wong Jia Hau ssh-add 返回:“连接代理时出错:没有这样的文件或目录” 2018-08-24 23:28:13 +0800 CST
  • Martin Hope
    Evan Carroll systemctl 状态显示:“状态:降级” 2018-06-03 18:48:17 +0800 CST
  • Martin Hope
    Tim 我们如何运行存储在变量中的命令? 2018-05-21 04:46:29 +0800 CST
  • Martin Hope
    Ankur S 为什么 /dev/null 是一个文件?为什么它的功能不作为一个简单的程序来实现? 2018-04-17 07:28:04 +0800 CST
  • Martin Hope
    user3191334 如何从 systemctl 服务日志中查看最新的 x 行 2018-02-07 00:14:16 +0800 CST
  • Martin Hope
    Marko Pacak Nano - 跳转到文件末尾 2018-02-01 01:53:03 +0800 CST
  • Martin Hope
    Kidburla 为什么真假这么大? 2018-01-26 12:14:47 +0800 CST
  • Martin Hope
    Christos Baziotis 在一个巨大的(70GB)、一行、文本文件中替换字符串 2017-12-30 06:58:33 +0800 CST
  • Martin Hope
    Bagas Sanjaya 为什么 Linux 使用 LF 作为换行符? 2017-12-20 05:48:21 +0800 CST

热门标签

linux bash debian shell-script text-processing ubuntu centos shell awk ssh

Explore

  • 主页
  • 问题
    • 最新
    • 热门
  • 标签
  • 帮助

Footer

AskOverflow.Dev

关于我们

  • 关于我们
  • 联系我们

Legal Stuff

  • Privacy Policy

Language

  • Pt
  • Server
  • Unix

© 2023 AskOverflow.DEV All Rights Reserve