badblocks: add page (#1399)

coverage
Starbeamrainbowlabs 2017-06-11 14:30:40 +01:00 committed by Waldir Pimenta
parent 1d2cbd0f07
commit 10e9f9d2af
1 changed files with 16 additions and 0 deletions

16
pages/common/badblocks.md Normal file
View File

@ -0,0 +1,16 @@
# badblocks
> Search a device for bad blocks.
> Some usages of badblocks can cause destructive actions, such as erasing all the data on a disk, including the partition table.
- Search a disk for bad blocks by using a non-destructive read-only test:
`sudo badblocks {{/dev/sda}}`
- Search an unmounted disk for bad blocks with a non-destructive read-write test:
`sudo badblocks -n {{/dev/sda}}`
- Search an unmounted disk for bad blocks with a destructive write test:
`sudo badblocks -w {{/dev/sda}}`