97

I wanted to install a package to monitor the temperature of my CPU called lm-sensorsInstall lm-sensors.

According to Synaptic, it's already installed.

Can someone give me some simple step-by-step instructions on how I can actually run it from the command line or otherwise?

sq1020
  • 1,141

6 Answers6

113

Once lm-sensors is installed you need to reach for your terminal:

type

sudo sensors-detect

just press ENTER for everything it suggests (shown in Uppercase)

At the end it will ask you whether to add what it finds to /etc/modules. If you are happy with the findings type "yes".

More information about lm-sensors and how to tailor it for your system can be found on the lm-sensors installation wiki page

Typing

sensors

will display the values for the sensors detected previously.

e.g.

acpitz-virtual-0
Adapter: Virtual device
temp1:       +55.0°C  (crit = +90.0°C)
David Foerster
  • 36,264
  • 56
  • 94
  • 147
fossfreedom
  • 172,746
  • 9
    +1 for sensors-detect, I got two extra sensors from it :) – Lekensteyn Jul 20 '11 at 08:21
  • 42
    Tip: use the watch command to see updates of the output of the sensors command in real time! Like so: $ watch sensors – oaskamay Feb 28 '13 at 21:15
  • Do NOT use sensors-detect! It can permanently damage your hardware! http://www.phoronix.com/scan.php?page=news_item&px=MTQ3MDE – jobukkit May 18 '15 at 16:44
  • 7
    @JopV. - you need to read the article more carefully - the developers asked distro packagers to backport the stable version. That is what ubuntu did. http://changelogs.ubuntu.com/changelogs/pool/main/l/lm-sensors/lm-sensors_3.3.4-2ubuntu1/changelog – fossfreedom May 18 '15 at 18:03
  • 4
    I had to run sudo service kmod restart to see the results after sensors-detect – Ali Cheaito Dec 23 '17 at 20:21
  • $ watch -d -n1 sensors is a really nice way to monitor whats happening. – Zexelon Apr 04 '22 at 17:48
32

lm-sensors Install lm-sensors

is a set of tools to control and view sensors that may be present on your hardware. Included are several applications that run from the command line:

  • sensors: shows the current readings of all sensor chips.
  • sensord: daemon to periodically log sensor readings to syslog
  • fancontrol: calculates fan speeds from temperatures and sets the corresponding PWM outputs
  • pwmconfig: tests the PWM outputs of sensors and configures fancontrol
  • and more (see lm-sensors documentation for details)

To run these programs open a terminal and type the name of the application (including optional parameters, see manpages for details). This will give an output similar as shown here for sensors:

~$ sensors

k8temp-pci-00c3 Adapter: PCI adapter Core0 Temp: +30.0°C
Core0 Temp: +30.0°C
Core1 Temp: +29.0°C
Core1 Temp: +36.0°C

it8718-isa-0228 Adapter: ISA adapter [...] # shortened

Configuration of lm-sensors is done by configuration files in /etc/sensors3.conf and in /etc/sensors.conf (for details see manpage for sensors.conf).

Takkat
  • 142,284
20

psensor

sudo apt install psensor

I'm quite fond of psensor... it runs on the Indicator Bar (the "Systray" near the clock), so it is perhaps the most unobtrusive app that uses lm-sensors. It also can show a nice window with graphs displaying the history of each sensor, just like System Monitor does for memory, CPU usage, etc. It has logging too!

It also uses sensors other than lm-sensors, like hddtemp for HDD temperatures and NVidia and AMD GPU (video cards) temperature and fan.

screenshot of psensor

Better screenshots than mine can be found in the author's website:

http://wpitchoune.net/psensor/

MestreLion
  • 20,086
14

xsensors Install xsensors

sudo apt install xsensors

It has a graphical interface that is easy to understand. It shows me the motherboard voltages (there are four of them), the CPU and motherboard temperature as well as the CPU fan speed, the speed of three chassis fans and the power fan speed. All monitored in real time. And it loads into the the Unity Dash.

enter image description here

Pratik
  • 189
  • 6
1

If you use XFCE, I think it`s better to show it in toolbar, like this, use this plugin:

enter image description here

The effect is this:

enter image description here

2:

ChanganAuto
  • 1,670
  • 8
  • 14
  • 21
1

For the record, if anyone is interested to get e-mail notifications/alerts on fans dying or temperatures shooting through the roof, I've written a simple service in Perl to do that monitoring for me. I've uploaded the source code and README to Github. I.e. yet another e-mail notification daemon :-) Couldn't find anything similarly trivial in the interwebs, now that sensord is deprecated... = just my two cents worth.

frr
  • 129