Skip to content

Latest commit

 

History

History
42 lines (23 loc) · 1.2 KB

File metadata and controls

42 lines (23 loc) · 1.2 KB

Disks

Some good practices

Always try to separate: primary data, cache data (data generated from primary data), configuration data, and system. This makes data management (backup, recovery, day to day maintenance) easier.

In ZFS use different datasets for that.

For backup data or large data with few I/O operations eventually use NFS mount from a separate server.

ZFS

we extensively use ZFS, see ZFS overview

Disk space

See How to add disk space on a Qemu VM

Smartctl

Some useful command:

smartctl -x

gives you every informations about a system.

Be attentive to SMART overall-health self-assessment test result.

Also verify Device Error Count. (you can see errors with smartctl -l error)

Verify that tests under SMART Extended Self-test finished. (you can see tests with smartctl -l selftest)

Use smartctl -t short /dev/sdX to test a single device. (or -t long)

Resources: