From fef4fd0e539503f228b7ac4cfe6c659c24f57541 Mon Sep 17 00:00:00 2001 From: bserie Date: Tue, 9 Jun 2020 11:59:28 +0200 Subject: [PATCH] Support NVME --- HowtoSmart.md | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/HowtoSmart.md b/HowtoSmart.md index f61440a5..06b3a594 100644 --- a/HowtoSmart.md +++ b/HowtoSmart.md @@ -392,3 +392,20 @@ Error Counter logging not supported [GLTSD (Global Logging Target Save Disable) set. Enable Save with '-S on'] Device does not support Self Test logging ~~~ + +### Support NVME + +Par défaut SMART ne surveille pas les disques NVME car le support est jugé instable. On pourra tout de même les surveiller en ajoutant `-d nvme` dans la configuration. + +~~~ { .diff } +diff --git a/smartd.conf b/smartd.conf +index 4cdede7..81619c9 100644 +--- a/smartd.conf ++++ b/smartd.conf +@@ -18,7 +18,7 @@ + # Directives listed below, which will be applied to all devices that + # are found. Most users should comment out DEVICESCAN and explicitly + # list the devices that they wish to monitor. +-DEVICESCAN -d removable -n standby -m root -M exec /usr/share/smartmontools/smartd-runner ++DEVICESCAN -d removable -d nvme -n standby -m root -M exec /usr/share/smartmontools/smartd-runner +~~~ \ No newline at end of file