19
0
Bifurcation 0
Cette révision appartient à :
Benoît S. 2020-06-09 11:59:28 +02:00
Parent 74235ac084
révision fef4fd0e53
1 fichiers modifiés avec 17 ajouts et 0 suppressions

Voir le fichier

@ -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
~~~