坏块陷入循环?

坏块陷入循环?

我正在使用一个名为 badblocks 的程序来扫描磁盘是否有错误,我发现它有时会陷入循环。我在读/写模式下使用,默认情况下它测试四种模式。这是一个例子:

badblocks -w -s /dev/sdf -b 4096

Testing with pattern 0xaa: done                                                 
Reading and comparing: done                                                 
Testing with pattern 0x55: done                                                 
Reading and comparing: done                                                 
Testing with pattern 0xff: done                                                 
Reading and comparing: done                                                 
Testing with pattern 0x00: done                                                 
Reading and comparing: 1.79% done, 23:39:29 elapsed. (0/0/0 errors)

好的,看起来不错,只不过现在这是它第三次完成最终模式 (0x00)。当它达到 100% 时,它只会重置 % 计数器并重新开始。该作业当前未运行,但我现在正在另一台计算机上使用另一个磁盘运行坏块,并且我注意到它正在重复第二种模式。有任何想法吗?在这两种情况下都没有报告错误(到目前为止)。

相关内容