🛠️ Synology DSM 7+: Lüftersteuerung dauerhaft anpassen (scemd.xml)

Diese Anleitung beschreibt, wie du auf deiner Synology NAS (z.B. DS920+ mit DX517) die scemd.xml anpasst, um Lüfterschwellen zu verändern -- dauerhaft über Reboots und DSM-Updates hinweg.

✅ Voraussetzungen

  • SSH-Zugriff auf das NAS
  • root-Rechte
  • DSM 7.x

📦 Schritte

1️⃣ Backup der Originaldateien

cp /usr/syno/etc.defaults/scemd.xml /usr/syno/etc.defaults/scemd.xml.bak
cp /usr/syno/etc/scemd.xml /usr/syno/etc/scemd.xml.bak

2️⃣ Modifikation der scemd.xml

nano /usr/syno/etc.defaults/scemd.xml

Beispieländerung:

<thermal_threshold>
    <low>30</low>
    <high>35</high>
    <dangerous>40</dangerous>
</thermal_threshold>

3️⃣ Modifizierte Version dauerhaft sichern

mkdir -p /usr/local/etc
cp /usr/syno/etc.defaults/scemd.xml /usr/local/etc/scemd.xml

4️⃣ Fix-Skript erstellen

cat << 'EOF' > /usr/local/bin/fix_scemd.sh
#!/bin/sh
sleep 10
cp /usr/local/etc/scemd.xml /usr/syno/etc/scemd.xml
cp /usr/local/etc/scemd.xml /usr/syno/etc.defaults/scemd.xml
systemctl restart scemd
EOF

chmod +x /usr/local/bin/fix_scemd.sh

5️⃣ Optionaler Test

/usr/local/bin/fix_scemd.sh

6️⃣ Autostart über rc.local (nicht updatesicher)

if ! grep -q fix_scemd /etc/rc.local; then
  echo "/usr/local/bin/fix_scemd.sh &" >> /etc/rc.local
fi

7️⃣ Updatesicher: Aufgabenplaner in DSM einrichten

  1. DSM → Systemsteuerung → Aufgabenplaner\
  2. Neue geplante Aufgabe → Benutzerdefiniertes Skript\
  3. Benutzer: root\
  4. Ereignis: Beim Start\
  5. Skriptinhalt:
/usr/local/bin/fix_scemd.sh

8️⃣ Reboot und Kontrolle

reboot

Danach prüfen:

grep -A 3 thermal_threshold /usr/syno/etc.defaults/scemd.xml

✅ Fertig!

Deine NAS regelt die Lüfter jetzt nach deinen Vorgaben -- leise, kontrolliert und updatesicher.

© 2026 ctrlaltdelete -- bauer.cc

Previous Post