smartmontools

From NixOS Wiki
Revision as of 04:12, 1 August 2024 by Unabomberlive (talk | contribs) (Created page with "Он включает в себя программы '''smartd''' и '''smartctl'''. Smartd может быть включён на системах NixOS с помощью модуля {{Nixos:option|services.smartd}}.")

smartmontools is a package which provides tools for monitoring drives which support the S.M.A.R.T. system for monitoring hard drive health.

Он включает в себя программы smartd и smartctl. Smartd может быть включён на системах NixOS с помощью модуля services.smartd.

Пример

 
/etc/nixos/configuration.nix
{
  services.smartd = {
    enable = true;
    devices = [
      {
        device = "/dev/sda"; # FIXME: Change this to your actual disk; use lsblk to find the appropriate value
      }
    ];
  };
}