multiple pages: Unify file path syntax to indicate a 'path to' (#4816)

This commit is contained in:
sebastientinel
2020-10-28 18:19:43 +01:00
committed by GitHub
parent 8b07793aa6
commit 1d32985f2f
28 changed files with 60 additions and 56 deletions

View File

@@ -5,24 +5,24 @@
- Search a disk for bad blocks by using a non-destructive read-only test:
`sudo badblocks {{/dev/sda}}`
`sudo badblocks {{/dev/sdX}}`
- Search an unmounted disk for bad blocks with a non-destructive read-write test:
`sudo badblocks -n {{/dev/sda}}`
`sudo badblocks -n {{/dev/sdX}}`
- Search an unmounted disk for bad blocks with a destructive write test:
`sudo badblocks -w {{/dev/sda}}`
`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/sda}}`
`sudo badblocks -svw {{/dev/sdX}}`
- Search an unmounted disk in destructive mode and output found blocks to a file:
`sudo badblocks -o {{/path/to/file}} -w {{/dev/sda}}`
`sudo badblocks -o {{path/to/file}} -w {{/dev/sdX}}`
- 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/sda}}`
`sudo badblocks -w -b {{4096}} -c {{65536}} {{/dev/sdX}}`