非破壊不良ブロック-nはどのモードで書き込みを行いますか?

非破壊不良ブロック-nはどのモードで書き込みを行いますか?

man badblocks説明する:

   -n     Use non-destructive read-write mode.  By default only a non-
          destructive read-only test is done.  This option must not be
          combined with the -w option, as they are mutually exclusive.

この回答説明する:

非破壊読み取りおよび書き込みテストは、データを上書きし、確認内容を読み取り、元のデータを書き換える方法で機能します。

-n明示的に指定しないと、どのモードが使用されますか-t

ベストアンサー1

デフォルトモードは次のとおりです。-n ランダムパターンです:

const unsigned int patterns[] = { ~0 };

(望むよりpattern_fill「ランダム」と同じです。)

破壊モードでは4つのモードを使用:

const unsigned int patterns[] = {0xaa, 0x55, 0xff, 0x00};

おすすめ記事