2017-06-11 14:30:40 +01:00
|
|
|
# badblocks
|
|
|
|
|
|
|
|
> Search a device for bad blocks.
|
2021-03-31 11:13:06 +01:00
|
|
|
> Some usages of badblocks can cause destructive actions, such as erasing all data on a disk, including the partition table.
|
2021-04-12 07:54:04 +01:00
|
|
|
> More information: <https://manned.org/badblocks>.
|
2017-06-11 14:30:40 +01:00
|
|
|
|
|
|
|
- Search a disk for bad blocks by using a non-destructive read-only test:
|
|
|
|
|
2020-10-28 17:19:43 +00:00
|
|
|
`sudo badblocks {{/dev/sdX}}`
|
2017-06-11 14:30:40 +01:00
|
|
|
|
2024-02-09 14:34:08 +00:00
|
|
|
- Search an unmounted disk for bad blocks with a [n]on-destructive read-write test:
|
2017-06-11 14:30:40 +01:00
|
|
|
|
2020-10-28 17:19:43 +00:00
|
|
|
`sudo badblocks -n {{/dev/sdX}}`
|
2017-06-11 14:30:40 +01:00
|
|
|
|
2024-02-09 14:34:08 +00:00
|
|
|
- Search an unmounted disk for bad blocks with a destructive [w]rite test:
|
2017-06-11 14:30:40 +01:00
|
|
|
|
2020-10-28 17:19:43 +00:00
|
|
|
`sudo badblocks -w {{/dev/sdX}}`
|
2020-01-15 09:50:37 +00:00
|
|
|
|
2024-02-09 14:34:08 +00:00
|
|
|
- Use the destructive [w]rite test and [s]how [v]erbose progress:
|
2020-01-15 09:50:37 +00:00
|
|
|
|
2020-10-28 17:19:43 +00:00
|
|
|
`sudo badblocks -svw {{/dev/sdX}}`
|
2020-01-15 09:50:37 +00:00
|
|
|
|
2024-02-09 14:34:08 +00:00
|
|
|
- In destructive mode, [o]utput found blocks to a file:
|
2020-01-15 09:50:37 +00:00
|
|
|
|
2020-10-28 17:19:43 +00:00
|
|
|
`sudo badblocks -o {{path/to/file}} -w {{/dev/sdX}}`
|
2020-01-15 09:50:37 +00:00
|
|
|
|
2024-02-09 14:34:08 +00:00
|
|
|
- Use the destructive mode with improved speed using 4K [b]lock size and 64K block [c]ount:
|
2020-01-15 09:50:37 +00:00
|
|
|
|
2020-10-28 17:19:43 +00:00
|
|
|
`sudo badblocks -w -b {{4096}} -c {{65536}} {{/dev/sdX}}`
|