Differences
This shows you the differences between two versions of the page.
| Next revision | Previous revision | ||
| computers:synology [2021/12/08 03:21] – created localadmin | computers:synology [2022/01/05 20:21] (current) – jon | ||
|---|---|---|---|
| Line 12: | Line 12: | ||
| Note, that due to how Synology utilizes a disk to get the OS functional to use, you won't be able to break in all the drives at once. If you have a spare drive you can toss in, that might help so that the OS can stay functional. The commands do not eat up a lot of RAM, so they can be run simultaneously. The disk can not be in use with the NAS. | Note, that due to how Synology utilizes a disk to get the OS functional to use, you won't be able to break in all the drives at once. If you have a spare drive you can toss in, that might help so that the OS can stay functional. The commands do not eat up a lot of RAM, so they can be run simultaneously. The disk can not be in use with the NAS. | ||
| - | https://community.synology.com/enu/forum/17/post/96581 | + | === 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 / | ||
| + | ## Short Test | ||
| + | smartctl -d sat -t short / | ||
| + | ## Long Test | ||
| + | smartctl -d sat -t long / | ||
| + | ## Badblocks (will take several days, if not a week depending on disk size due to running five passes) | ||
| + | ## Destructive | ||
| + | badblocks -b 4096 -wsv / | ||
| + | ## Non-destructive | ||
| + | badblocks -b 4096 -nsv / | ||
| + | </ | ||
| + | |||
| + | https://www.ixsystems.com/community/resources/hard-drive-burn-in-testing.92/ | ||
| https:// | https:// | ||