Differences
This shows you the differences between two versions of the page.
| Both sides previous revision Previous revision Next revision | Previous revision | ||
| computers:synology [2022/01/05 20:06] – jon | computers:synology [2022/01/05 20:21] (current) – jon | ||
|---|---|---|---|
| Line 14: | Line 14: | ||
| === Break-in steps === | === Break-in steps === | ||
| + | smartctl on Synology requires the use of the -d option to force it to specific disk modes. In our case, this will be SATA, so '-d sat' is used. | ||
| + | < | ||
| + | ## List disk | ||
| + | smartctl -d sat -a /dev/sata1 | ||
| + | ## Short Test | ||
| + | smartctl -d sat -t short /dev/sata1 | ||
| + | ## Long Test | ||
| + | smartctl -d sat -t long /dev/sata1 | ||
| + | ## Badblocks (will take several days, if not a week depending on disk size due to running five passes) | ||
| + | ## Destructive | ||
| + | badblocks -b 4096 -wsv /dev/sata1 | ||
| + | ## Non-destructive | ||
| + | badblocks -b 4096 -nsv /dev/sata1 | ||
| + | </ | ||
| + | |||
| + | https:// | ||
| https:// | https:// | ||