it doesnt reply. Empty line.
Post the output of sensors.
it doesnt reply. Empty line.
Post the output of sensors.
nct6776-isa-0290
Adapter: ISA adapter
Vcore: 1.40 V (min = +0.00 V, max = +1.74 V)
in1: 1.84 V (min = +0.00 V, max = +0.00 V) ALARM
AVCC: 3.38 V (min = +2.98 V, max = +3.63 V)
+3.3V: 3.38 V (min = +2.98 V, max = +3.63 V)
in4: 2.04 V (min = +0.00 V, max = +0.00 V) ALARM
in5: 1.70 V (min = +0.00 V, max = +0.00 V) ALARM
in6: 2.04 V (min = +0.00 V, max = +0.00 V) ALARM
3VSB: 3.46 V (min = +2.98 V, max = +3.63 V)
Vbat: 3.09 V (min = +2.70 V, max = +3.63 V)
fan1: 0 RPM (min = 0 RPM)
fan2: 3580 RPM (min = 0 RPM)
fan3: 0 RPM (min = 0 RPM)
SYSTIN: +23.0°C (high = +0.0°C, hyst = +0.0°C) ALARM sensor = thermistor
CPUTIN: +26.5°C (high = +80.0°C, hyst = +75.0°C) sensor = thermistor
AUXTIN: -62.0°C (high = +80.0°C, hyst = +75.0°C) sensor = thermistor
PCH_CHIP_TEMP: +0.0°C
PCH_CPU_TEMP: +0.0°C
PCH_MCH_TEMP: +0.0°C
intrusion0: ALARM
intrusion1: ALARM
beep_enable: disabled
k10temp-pci-00c3
Adapter: PCI adapter
temp1: +25.9°C (high = +70.0°C)
(crit = +100.0°C, hyst = +98.0°C)
late but done ![]()
What is the output of:
sensors k10temp-pci-00c3 | awk '$1 == "temp1:" { print $2 }' | grep -o '[0-9.]\+' | sed 's/\.//'
What is the output of:
sensors k10temp-pci-00c3 | awk '$1 == "temp1:" { print $2 }' | grep -o '[0-9.]\+' | sed 's/\.//'
nothing
i mean, it doesnt have an output
What is the output of:
sensors k10temp-pci-00c3
sensors k10temp-pci-00c3 | awk '$1 == "temp1:" { print $2 }'
Please include the prompt and command in the output.
root@Openmediavault:~# sensors k10temp-pci-00c3
k10temp-pci-00c3
Adapter: PCI adapter
temp1: +25.2°C (high = +70.0°C)
(crit = +100.0°C, hyst = +98.0°C)
root@Openmediavault:~# sensors k10temp-pci-00c3 | awk '$1 == "temp1:" { print $2 }'
+24.5°C
I forgot to include a further test:
sensors k10temp-pci-00c3 | awk '$1 == "temp1:" { print $2 }' | grep -o '[0-9.]\+'
Are you typing the command in or cut&paste?
and i forgot to tell you i have a new dashboard window: SENSORS ! ![]()
nct6776-isa-0290
Adapter: ISA adapter
Vcore: 992.00 mV
in1: 1.85 V
AVCC: 3.38 V
+3.3V: 3.38 V
in4: 2.04 V
in5: 1.70 V
in6: 2.04 V
3VSB: 3.46 V
Vbat: 3.09 V
fan1: 0 RPM
fan2: 3562 RPM
fan3: 0 RPM
SYSTIN: +22.0°C
CPUTIN: +26.0°C
AUXTIN: -62.0°C
PCH_CHIP_TEMP: +0.0°C
PCH_CPU_TEMP: +0.0°C
PCH_MCH_TEMP: +0.0°C
intrusion0: ALARM
intrusion1: ALARM
beep_enable: disabled
k10temp-pci-00c3
Adapter: PCI adapter
temp1: +25.8°C
I forgot to include a further test:
sensors k10temp-pci-00c3 | awk '$1 == "temp1:" { print $2 }' | grep -o '[0-9.]\+'
Are you typing the command in or cut&paste?
root@Openmediavault:~# sensors k10temp-pci-00c3 | awk '$1 == "temp1:" { print $2 }' | grep -o '[0-9.]\+'
25.5
(ctrl+c , right mouse button click)
Strange. What about:
sensors k10temp-pci-00c3 | awk '$1 == "temp1:" { print $2 }' | grep -o '[0-9.]\+' | sed 's/\.//'
sensors k10temp-pci-00c3 | awk '$1 == "temp1:" { print $2 }' | grep -o '[0-9.]\+' | sed 's|\.||'
echo '25.5' | sed 's/\.//'
root@Openmediavault:~# sensors k10temp-pci-00c3 | awk '$1 == "temp1:" { print $2 }' | grep -o '[0-9.]\+' | sed 's/\.//'
256
root@Openmediavault:~# sensors k10temp-pci-00c3 | awk '$1 == "temp1:" { print $2 }' | grep -o '[0-9.]\+' | sed 's|\.||'
264
root@Openmediavault:~# echo '25.5' | sed 's/\.//'
255
is there a "." lost?
is there a "." lost?
Nope. That is what the divisor (OMV_CPU_TEMP_DIVISOR) is for.
Put the command in /usr/sbin/cpu-temp
sensors k10temp-pci-00c3 | awk '$1 == "temp1:" { print $2 }' | grep -o '[0-9.]\+' | sed 's/\.//'
Nope. That is what the divisor (OMV_CPU_TEMP_DIVISOR) is for.
Put the command in /usr/sbin/cpu-temp
sensors k10temp-pci-00c3 | awk '$1 == "temp1:" { print $2 }' | grep -o '[0-9.]\+' | sed 's/\.//'
Dummy here ![]()
"Put the command in" does it means , write first " /usr......" then "sensors....."
?
"Put the command in" does it means , write first " /usr......" then "sensors....."
?
What part of the Guide instructions doesn't explain well what to do?
Guide - Custom cpu temp script for openmediavault-cputemp plugin
You need to create the file with:
sudo nano /usr/sbin/cpu-temp
Then paste/write the line (as it is) that you obtained:
sensors k10temp-pci-00c3 | awk '$1 == "temp1:" { print $2 }' | grep -o '[0-9.]\+' | sed 's/\.//'
It's all on the above posted guide.
Display MoreWhat part of the Guide instructions doesn't explain well what to do?
Guide - Custom cpu temp script for openmediavault-cputemp plugin
You need to create the file with:
sudo nano /usr/sbin/cpu-temp
Then paste/write the line (as it is) that you obtained:
sensors k10temp-pci-00c3 | awk '$1 == "temp1:" { print $2 }' | grep -o '[0-9.]\+' | sed 's/\.//'
It's all on the above posted guide.
no part.
I did everything in the guide and we were testing why the dashboard does not output the temperature in CPU Temp plugin.
What i didnt understand was how to execute the command, because i have NO knoledge in debian , trying to have but not still.
Understood?
Thanks
ok. I did. Added the line at what already was in the file.
Now i see the temp in CPU temp ! (not in 2 or 3 but i guess i have to have only one at time)
Thanks ryecoaaron for the patience
(not in 2 or 3 but i guess i have to have only one at time)
You need multiple scripts for 2,3,4 to work. That is covered in the third post in the guide - RE: Guide - Custom cpu temp script for openmediavault-cputemp plugin
Don’t have an account yet? Register yourself now and be a part of our community!