1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages/common/badblocks.md

30 lines
994 B
Markdown
Raw Normal View History

2017-06-11 14:30:40 +01:00
# badblocks
> Search a device for bad blocks.
2021-03-31 12:13:06 +02:00
> Some usages of badblocks can cause destructive actions, such as erasing all data on a disk, including the partition table.
> 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:
`sudo badblocks {{/dev/sdX}}`
2017-06-11 14:30:40 +01:00
- Search an unmounted disk for bad blocks with a non-destructive read-write test:
`sudo badblocks -n {{/dev/sdX}}`
2017-06-11 14:30:40 +01:00
- Search an unmounted disk for bad blocks with a destructive write test:
`sudo badblocks -w {{/dev/sdX}}`
- Search an unmounted disk for bad blocks with a destructive write test and show verbose status:
`sudo badblocks -svw {{/dev/sdX}}`
2020-10-27 09:59:17 +03:30
- Search an unmounted disk in destructive mode and output found blocks to a file:
`sudo badblocks -o {{path/to/file}} -w {{/dev/sdX}}`
2020-10-27 09:59:17 +03:30
- Search an unmounted disk in destructive mode with improved speed using 4K block size and 64K block count:
`sudo badblocks -w -b {{4096}} -c {{65536}} {{/dev/sdX}}`