mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-03-28 21:16:20 +01:00
badblocks: add more examples (#3747)
Add two examples using verbose mode and output to file.
This commit is contained in:
parent
147d481109
commit
1a925460a9
1 changed files with 12 additions and 0 deletions
|
@ -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}}`
|
||||
|
|
Loading…
Add table
Reference in a new issue