瀏覽代碼

badblocks: add page (#1399)

Starbeamrainbowlabs 7 年之前
父節點
當前提交
10e9f9d2af
共有 1 個文件被更改,包括 16 次插入0 次删除
  1. 16 0
      pages/common/badblocks.md

+ 16 - 0
pages/common/badblocks.md

@@ -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}}`