“mkfs.ext3 -cc”错误报告的含义

“mkfs.ext3 -cc”错误报告的含义

我正在尝试在跨越整个磁盘的分区上使用“mkfs.ext3 -cc /dev/sda1”来格式化据称有缺陷的硬盘。

我希望了解 mkfs.ext3 命令输出中最后一行持续错误报告的含义:“...(109/0/0 错误)”。我在手册页和其他来源中没有找到有关这三个值的信息。

这是运行命令的持续输出:

# mkfs.ext3 -cc /dev/sda1
mke2fs 1.42.4 (12-June-2012)
Filesystem label=
OS type: Linux
Block size=4096 (log=2)
Fragment size=4096 (log=2)
Stride=0 blocks, Stripe width=0 blocks
61054976 inodes, 244190390 blocks
12209519 blocks (5.00%) reserved for the super user
First data block=0
Maximum filesystem blocks=4294967296
7453 block groups
32768 blocks per group, 32768 fragments per group
8192 inodes per group
Superblock backups saved in blocks:
        32768, 98304, 163840, 229376, 294912, 819200, 884736, 1605632, 2654208,
        4096000, 7962624, 11239424, 20480000, 23887872, 71663616, 78675968,
        102400000, 214990848

Checking with model 0xaa: done
Reading and comparision:  94.30% done, 24:09:03 elapsed. (109/0/0 errors)

答案1

当所有其他方法都失败时,请使用实际的来源!在那里,我们看到正在打印的字段是:

fprintf(stderr,
                _("Pass completed, %u bad blocks found. (%d/%d/%d errors)\n"),
                bb_count, num_read_errors, num_write_errors, num_corruption_errors);

换句话说,它们是读取错误、写入错误和损坏错误的数量。

相关内容