You are not logged in.

#1 2007-08-07 14:48:20

rokkon
Member
Registered: 2007-04-08
Posts: 18

conky not displaying temps anymore

since a recent pacman upgrade (including kernel 2.6.22) conky stopped displaying temperatues. i used to read them via an i2c device, which isnt in /sys/bus/i2c anymore. actually there a no i2c devices at all right now. feature or bug? please help

Offline

#2 2007-08-08 00:09:54

somedrew
Member
From: Canada
Registered: 2007-05-14
Posts: 140

Re: conky not displaying temps anymore

What about /sys/bus/platform? https://forums.gentoo.org/viewtopic-t-5 … 0e54598bc8
For an easy way to get conky to display the temps, what about having it grab output from lm_sensors?

Offline

#3 2007-08-10 17:33:17

rokkon
Member
Registered: 2007-04-08
Posts: 18

Re: conky not displaying temps anymore

thanks for the post.
/sys/bus/platform doesnt seem to work without patching. i will check to grab temps from lm_sensors.

Offline

#4 2007-08-13 06:55:38

somedrew
Member
From: Canada
Registered: 2007-05-14
Posts: 140

Re: conky not displaying temps anymore

rokkon wrote:

thanks for the post.
/sys/bus/platform doesnt seem to work without patching. i will check to grab temps from lm_sensors.

I can't seem to read from the device module either, but there were a few more paths in /sys that looked promising if things have been switched around and you want to have a gander.
lm_sensors is working great with conky here, but you'll need to format the output a tad to get the desired look.
Here's the relevant line from my .conkyrc if it's any help (the parameters and options will need to be changed unless you're running a CoreDuo)
${color red} CPU Temps(C): $color ${execi 6 /usr/bin/sensors | grep Core | paste -s | cut -c15-16,19-20,71-72}

cheers,

Last edited by somedrew (2007-08-13 06:58:37)

Offline

#5 2007-08-14 20:43:36

rokkon
Member
Registered: 2007-04-08
Posts: 18

Re: conky not displaying temps anymore

hey thanks again, grabbing from lm_sensors works. i think i can live with that wink

Offline

#6 2008-08-05 11:33:22

The Avatar of Time
Member
Registered: 2008-01-11
Posts: 226

Re: conky not displaying temps anymore

Hello,

I am trying to get Conky to display CPU, Motherboard, and whatever other temps that it can from lm_sensors as well. I am completely lost on how to go about it though.

It would seem that k8temp does not work with Conky? Or atleast I haven't been able to find anyway that would make it do so.

I see this mentioned here:

${color red} CPU Temps(C): $color ${execi 6 /usr/bin/sensors | grep Core | paste -s | cut -c15-16,19-20,71-72}

but I really don't understand what it is doing or how to make it work.

This is my 'sensors' readout:

k8temp-pci-00c3
Adapter: PCI adapter
Core0 Temp:  +49.0°C                                    
Core1 Temp:  +57.0°C                                    

k8temp-pci-00cb
Adapter: PCI adapter
Core0 Temp:  +39.0°C                                    
Core1 Temp:  +47.0°C                                    

it8716-isa-0d00
Adapter: ISA adapter
VCore:       +1.47 V  (min =  +0.00 V, max =  +4.08 V)   
VDDR:        +1.49 V  (min =  +0.00 V, max =  +4.08 V)   
+3.3V:       +3.31 V  (min =  +0.00 V, max =  +4.08 V)   
+5V:         +6.85 V  (min =  +0.00 V, max =  +6.85 V)   ALARM
+12V:       +11.90 V  (min =  +0.00 V, max = +16.32 V)   
in5:         +3.68 V  (min =  +0.00 V, max =  +4.08 V)   
in6:         +4.08 V  (min =  +0.00 V, max =  +4.08 V)   ALARM
5VSB:        +6.85 V  (min =  +0.00 V, max =  +6.85 V)   ALARM
VBat:        +3.10 V
fan1:          0 RPM  (min =    0 RPM)
fan2:          0 RPM  (min =    0 RPM)
temp1:       +33.0°C  (low  =  -1.0°C, high = +127.0°C)  sensor = transistor
temp2:      +127.0°C  (low  =  -1.0°C, high = +127.0°C)  sensor = thermal diode
temp3:      +127.0°C  (low  =  -1.0°C, high = +127.0°C)  sensor = transistor
cpu0_vid:   +1.400 V

I would like to have the temp for all four cores displayed seperately. I was hoping to get my Motherboard and Video Card to display as well, but those may be entirely different.

Could anyone give me some advice on how to go about this please? Or is there an easier way altogether? I have tried 'acpitemp' but it doesn't seem to work. '${acpitempf}' gives a readout of 32, which doesn't seem relevant at all and just acpitemp, without the 'f', reads 0.

On a seperate note, are the three ALARM's listed in my sensors readout something to worry about? My CPU's seem to run plenty hot as well......

Anyhow, thanks for any help.

Offline

#7 2008-08-05 17:51:55

[vEX]
Member
From: Sweden
Registered: 2006-11-23
Posts: 450

Re: conky not displaying temps anymore

For the temperatures, http://bbs.archlinux.org/viewtopic.php? … 85#p326085 might provide enough help.

Regarding the ALARMs, if the sensor output is correct and your +5V is outputting 6.85V you should worry about your power supply frying your components. But step one would be to check what the voltages show up as in BIOS.


PC: Antec P182B | Asus P8Z77-V PRO | Intel i5 3570k | 16GB DDR3 | GeForce 450GTS | 4TB HDD | Pioneer BDR-207D | Asus Xonar DX | Altec Lansing CS21 | Eizo EV2736W-BK | Arch Linux x86_64
HTPC: Antec NSK2480 | ASUS M3A78-EM (AMD 780G) | AMD Athlon X3 425 | 8GB DDR2 | GeForce G210 | 2TB HDD | Arch Linux x86_64
Server: Raspberry Pi (model B) | 512MB RAM | 750GB HDD | Arch Linux ARM

Offline

#8 2008-08-06 02:19:20

The Avatar of Time
Member
Registered: 2008-01-11
Posts: 226

Re: conky not displaying temps anymore

Hello,

Thanks for the reply.

I checked in BIOS and the 5v was 5.042v. Still over, but not as bad. That is a huge difference from the sensor readout though, wonder why that is?

So that being the case, it's still over, so I wonder what I should do about it?

Offline

#9 2008-08-06 10:05:38

[vEX]
Member
From: Sweden
Registered: 2006-11-23
Posts: 450

Re: conky not displaying temps anymore

I wouldn't worry about it, but if it bothers you then you should look at the lmsensors config used for your chipset. It probably have some mathematical equation that is wrong for your motherboard. I haven't really looked into it that much so I'm afraid I can't help you with that, you're probably better off to check the documentation.


PC: Antec P182B | Asus P8Z77-V PRO | Intel i5 3570k | 16GB DDR3 | GeForce 450GTS | 4TB HDD | Pioneer BDR-207D | Asus Xonar DX | Altec Lansing CS21 | Eizo EV2736W-BK | Arch Linux x86_64
HTPC: Antec NSK2480 | ASUS M3A78-EM (AMD 780G) | AMD Athlon X3 425 | 8GB DDR2 | GeForce G210 | 2TB HDD | Arch Linux x86_64
Server: Raspberry Pi (model B) | 512MB RAM | 750GB HDD | Arch Linux ARM

Offline

#10 2008-08-09 11:22:59

The Avatar of Time
Member
Registered: 2008-01-11
Posts: 226

Re: conky not displaying temps anymore

[vEX] wrote:

I wouldn't worry about it, but if it bothers you then you should look at the lmsensors config used for your chipset. It probably have some mathematical equation that is wrong for your motherboard. I haven't really looked into it that much so I'm afraid I can't help you with that, you're probably better off to check the documentation.

Well it doesn't really bother me so I don't think that I'll worry about it. Good to know it shouldn't burn anything up now.

Thanks.

Offline

Board footer

Powered by FluxBB