diff options
Diffstat (limited to 'tools/storage.html')
-rw-r--r-- | tools/storage.html | 23 |
1 files changed, 21 insertions, 2 deletions
diff --git a/tools/storage.html b/tools/storage.html index 97b73b0..894873b 100644 --- a/tools/storage.html +++ b/tools/storage.html @@ -5,14 +5,33 @@ <title>Storage</title> </head> <body> - <a href="index.html">Tools Index</a> <h1>Storage</h1> - <h2 id="mv">1. Moving partitions</h2> + <h2 id="maint">1. Maintenance</h2> + + <p>SMART provides statistics of disk firmware, this system + handle errors has their occur. Badblocks detect bad blocks + by writing and reading from disk in a destructive test. + Example of how to view SMART statistics of a disk;</p> + + <pre> + # smartctl -t long /dev/sdb1 + # smartctl -a /dev/sdb1 | less + </pre> + + <p>Search for bad blocks using + <a href="https://wiki.archlinux.org/index.php/Badblocks">non destructive test;</a></p> + + <pre> + # badblocks -nsv /dev/sdb1 + </pre> + + <h2 id="mv">2. Moving data</h2> <p>Reboot into single-user mode where services aren't started and networking is offline.<p> + <pre> # init 1 </pre> |