1

Tell me please which are the best ways to check the temperature of the CPU and other hardware components in Lubuntu?

It would be better if the applications could even tell me which are the normal average temperatures or temperatures in which should fit my hardware configuration.

Thank you.

XPDIN
  • 595

2 Answers2

3

you could try Psensor, you can download it in the Ubuntu software center. It gives you a desktop app which shows you the temperature of te cores, cpu, cpu load and the bridge temperatures.

it also enables you to set warnings for certain temperatures.

2

You need lm-sensors

sudo apt-get install lm-sensors 

Then run:

sudo sensors-detect

finsish the requests then run the command

sensors

Sample output:

coretemp-isa-0000
Adapter: ISA adapter
Core 0:      +59°C  (high =  +100°C)
coretemp-isa-0001
Adapter: ISA adapter
Core 1:      +59°C  (high =  +100°C)
coretemp-isa-0002
Adapter: ISA adapter
Core 2:      +55°C  (high =  +100°C)
coretemp-isa-0003
Adapter: ISA adapter
Core 3:      +56°C  (high =  +100°C)

Check this source for more information

Maythux
  • 87,123