-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathbadblocks
28 lines (15 loc) · 934 Bytes
/
badblocks
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# 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/sdX}}
- Search an unmounted disk for bad blocks with a non-destructive read-write test:
sudo badblocks -n {{/dev/sdX}}
- 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}}
- Search an unmounted disk in destructive mode and output found blocks to a file:
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/sdX}}