badblocks: add more examples (#3747)

Add two examples using verbose mode and output to file.
This commit is contained in:
David Hatch 2020-01-15 01:50:37 -08:00 committed by Marco Bonelli
parent 147d481109
commit 1a925460a9

View File

@ -14,3 +14,15 @@
- Search an unmounted disk for bad blocks with a destructive write test:
`sudo badblocks -w {{/dev/sda}}`
- Search an unmounted disk for bad blocks with a destructive write test and show verbose status:
`sudo badblocks -svw {{/dev/sda}}`
- Search an unmounted disk in desctructive mode and output found blocks to a file:
`sudo badblocks -o {{/path/to/file}} -w {{/dev/sda}}`
- Search an unmounted disk in desctructive mode with improved speed using 4K block size and 64K block count:
`sudo badblocks -w -b {{4096}} -c {{65536}} {{/dev/sda}}`