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.
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
nano /usr/syno/etc.defaults/scemd.xml
Beispieländerung:
<thermal_threshold>
<low>30</low>
<high>35</high>
<dangerous>40</dangerous>
</thermal_threshold>
mkdir -p /usr/local/etc
cp /usr/syno/etc.defaults/scemd.xml /usr/local/etc/scemd.xml
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
/usr/local/bin/fix_scemd.sh
if ! grep -q fix_scemd /etc/rc.local; then
echo "/usr/local/bin/fix_scemd.sh &" >> /etc/rc.local
fi
/usr/local/bin/fix_scemd.sh
reboot
Danach prüfen:
grep -A 3 thermal_threshold /usr/syno/etc.defaults/scemd.xml
Deine NAS regelt die Lüfter jetzt nach deinen Vorgaben -- leise, kontrolliert und updatesicher.
© 2026 ctrlaltdelete -- bauer.cc