Hallo zusammen,
auf meinem HP Microserver N40L läuft Unraid in der Version 6.9.2 und ich würde sehr gerne die Temperaturen anzeigen lassen.
Bisher durchgeführt habe ich folgendes:
Plugin "Dynamix System Temp" installiert
App "Nerdpack GUI" installiert und "Perl" aktiviert/installiert
Im Terminal folgendes eingegeben
Wenn ich über Einstellungen > System Temp anklicke, erhalte ich folgende Meldung:
Warning: require_once(/usr/local/emhttp/plugins/dynamix.system.temp/include/Legacy.php): failed to open stream: No such file or directory in /usr/local/emhttp/plugins/dynamix/include/DefaultPageLayout.php(523) : eval()'d code on line 16
Fatal error: require_once(): Failed opening required '/usr/local/emhttp/plugins/dynamix.system.temp/include/Legacy.php' (include_path='.:/usr/local/emhttp') in /usr/local/emhttp/plugins/dynamix/include/DefaultPageLayout.php(523) : eval()'d code on line 16
Mir ist aufgefallen, dass einige der Dateien nicht vorhanden sind.
Unter /usr/local/emhttp/plugins/dynamix.system.temp/include ist keine "Legacy.php" vorhanden
Im Unraid Forum (EN) habe ich folgendes gelesen und hoffe, dass ich alles richtig verstehe:
In die Datei /boot/config/go diese Zeilen hinzufügen
# Fix to show all temps and fan speeds
cp /boot/config/sensors.conf /etc/sensors.d
modprobe -a i2c_piix4 jc42 w83795 k10temp
In die Datei /boot/config/sensors.conf diese Zeilen eintragen
bus "i2c-0" "SMBus PIIX4 adapter port 0 at 0b00"
bus "i2c-1" "SMBus PIIX4 adapter port 2 at 0b00"
# CPU: AMD Turion II Neo N36L,N40L,N54L
# Limits are hardwired and cannot be changed.
chip "k10temp-pci-00c3"
label temp1 "CPU Core Temp"
# RAM Slot1
chip "jc42-i2c-0-18"
label temp1 "RAM1 Temp"
set temp1_max 60
set temp1_crit 70
set temp1_crit_hyst 65
# RAM Slot2
chip "jc42-i2c-0-19"
label temp1 "RAM2 Temp"
set temp1_max 60
set temp1_crit 70
set temp1_crit_hyst 65
# Hardware Monitor: Nuvoton W83795ADG
# +3.3V (in12) and 3VSB (in13) are hardwired.
chip "w83795adg-*"
label fan1 "Array Fan"
label temp1 "CPU Temp"
label temp2 "NB Temp"
label temp5 "MB Temp"
label in0 "Vcore"
label in1 "Vdimm"
ignore in2 # unclear (VSEN2 in BIOS)
ignore in3 # unclear (not shown in BIOS)
# Unknown Vcore for embedded AMD Turion II Neo processor.
# Measured values from 0.720 to 1.194 on N54L.
set in0_min 0.5
set in0_max 1.4
# DDR3 limits from JEDEC Standard No. 79-3F: 1.5 V +- 0.075 V, 1.8 V crit.
set in1_min 1.5 - 0.075
set in1_max 1.5 + 0.075
ignore intrusion0
Mir ist dann aufgefallen, dass folgende Datei nicht vorhanden ist
/boot/config/sensors.conf
Würde mich über Tipps freuen...