Skip to main content

How can I monitor the CPU temperature under linux?

How can I monitor the CPU temperature under linux

 i'll explain in this post how can you monitor the cpu temperature by different methods

method 1

you need the lm-sensors package. 

I thought I should mention that in addition to installing the package, you should run the sensors-detect command to identify the kernel modules that need to be loaded. 

If you haven't done this, manually run this once and check if it detects any sensors on board your computer.

$ sudo sensors-detect 
# sensors-detect revision 5249 (2008-05-11 22:56:25 +0200)

This program will help you determine which kernel modules you need
to load to use lm_sensors most effectively. It is generally safe
and recommended to accept the default answers to all questions,
unless you know what you're doing.
 
 
If you're lucky, your laptop will support an array of sensors. If not, you may still find a basic set of sensors for the CPU:
 
 $ sensors
acpitz-virtual-0
Adapter: Virtual device
temp1:       +40.5°C  (crit = +105.0°C)                  

coretemp-isa-0000
Adapter: ISA adapter
Core 0:      +35.0°C  (crit = +100.0°C)                  

coretemp-isa-0001
Adapter: ISA adapter 
 Core 1:      +40.0°C  (crit = +100.0°C) 

Using 'sensors' (from lm-sensors) and 'watch' (from procps pkg), you can real-time monitor sensors data on the command line via:
 
 watch -n 1 -d sensors

Every 1.0s: /usr/bin/sensors

...
temp1:       +55C  (high =   +50C, hyst =   +45C)   sensor = thermistor   ALARM
temp2:     +35.0C  (high =   +80C, hyst =   +75C)   sensor = thermistor
temp3:     +35.0C  (high =   +80C, hyst =   +75C)   sensor = thermistor
 

_______________________________________________________________________________________
    
method 2

Lm-sensors is a hardware health monitoring package for Linux. It allows you to access information from temperature, voltage, and fan speed sensors. It works with most newer systems. This package contains programs to help you set up and read data from lm-sensors.

To install use :
# sudo apt-get install lm-sensors sensors-applet To use :
# sensors-detect ... # 
sensors V1.5: +2.467 V (min = +1.42 V, max = +1.58 V) ALARM VCore: +1.479 V (min = +1.48 V, max = +1.63 V) ALARM V3.3: +3.373 V (min = +3.13 V, max = +3.47 V) V5: +5.000 V (min = +4.74 V, max = +5.26 V) V12: +11.734 V (min = +11.38 V, max = +12.62 V) CPU_Fan: 2299 RPM (min = 4000 RPM) ALARM fan2: 0 RPM (min = 0 RPM) fan3: 1057 RPM (min = 0 RPM) fan4: 0 RPM (min = 0 RPM) CPU: +41.50°C (low = +10°C, high = +50°C) Board: +35.25°C (low = +10°C, high = +35°C) Remote: +35.50°C (low = +10°C, high = +35°C) ALARM CPU_PWM: 144 Fan2_PWM: 112 Fan3_PWM: 112 vid: +1.550 V (VRM Version 9.0)
  or add the applet to your taskbar.

enter image description here


 
 
method 3

 the computertemp applet.

Computer Temperature Monitor is a little applet for the GNOME desktop that shows the temperature of your computer CPU and disks on screen.
It also allows you to log temperatures to a file. You can set alarms to notify you when a tempertature is reached. Several monitors can be added to the panel to monitor different sensors. It is designed to look like CPU Frequency Gnome applet, so they match each other on panel.
To install use :
sudo apt-get install computertemp and then add to your taskbar
enter image description here

Comments

Popular posts from this blog

Find Identifying Information from a Phone Number Using OSINT Tools

Find Identifying Information from a Phone Number Using OSINT Tools Phone numbers often contain clues to the owner's identity and can bring up a lot of data during an OSINT investigation. Starting with a phone number, we can search through a large number of online databases with only a few clicks to discover information about a phone number. It can include the carrier, the owner's name and address, and even connected online accounts. While a phone number may not seem like much information to give out, an OSINT researcher can quickly discover information that ties a phone number to a variety of other clues. The data can be used to detect whether a phone number is a throwaway VoIP number used to hide the owner's identity or a cell phone belonging to a real person. In the event of buying something online or replying to an apartment ad,...

Difference Between POP3 and IMAP

Difference Between POP3 and IMAP POP3 and IMAP are the protocols that are used to retrieve mail from the mailbox at the mail server to the recipient’s computer. Both are message accessing agents (MAA). The two protocols POP3 and IMAP are used when both the sender and recipient of mail are connected to the mail server by WAN or LAN .  SMTP protocol transfers the mail from client’s computer to the mail server and from one mail server to another mail server.POP3 has a limited functionality whereas, the IMAP has extra features over POP3. The basic difference between POP3 and IMAP is that using POP3 ; the user has to download the email before checking its content whereas, the user can partially check the content of mail before downloading it, using IMAP . Let us check out some more differences between POP and IMAP with the help of comparison chart. Content: POP3 Vs IMAP Comparison Chart Definition Key Differences Conclusion Comparison Chart Basis for Comparison POP...

How to use hping3 in kali Linux(Performing dos attack)

How to use hping3 in kali Linux (Performing dos attack) What is hping3 hping3 is a network tool able to send custom TCP/IP packets and to dis‐ play target replies like ping program does with ICMP replies. hping3 handle fragmentation, arbitrary packets body and size and can be used in order to transfer files encapsulated under supported protocols. Hping3 is extremely powerful you can do following things with hping3 Test firewall rules Advanced port scanning Test net performance using different protocols, packet size, TOS (type of service) and fragmentation. Path MTU discovery Transferring files between even really fascist firewall rules. Traceroute-like under different protocols. Firewalk-like usage. What is dos Attack Dos stands for denial of service. Dos attack shuts down Webservers/systems and completely makes them inaccessible to users. Dos attack floods target network with excess ...