Communities

Writing
Writing
Codidact Meta
Codidact Meta
The Great Outdoors
The Great Outdoors
Photography & Video
Photography & Video
Scientific Speculation
Scientific Speculation
Cooking
Cooking
Electrical Engineering
Electrical Engineering
Judaism
Judaism
Languages & Linguistics
Languages & Linguistics
Software Development
Software Development
Mathematics
Mathematics
Christianity
Christianity
Code Golf
Code Golf
Music
Music
Physics
Physics
Linux Systems
Linux Systems
Power Users
Power Users
Tabletop RPGs
Tabletop RPGs
Community Proposals
Community Proposals
tag:snake search within a tag
answers:0 unanswered questions
user:xxxx search by author id
score:0.5 posts with 0.5+ score
"snake oil" exact phrase
votes:4 posts with 4+ votes
created:<1w created < 1 week ago
post_type:xxxx type of post
Search help
Notifications
Mark all as read See all your notifications »
Q&A

Monitor computer temperatures

+2
−0

How do I read computer temperatures from my desktop in PopOS? Is there a terminal command, DE extension or GUI application that I can use for the purpose? The UEFI reports CPU, CPU case and motherboard temperatures, although not the GPU temperature. I'd like to see all these from the desktop, such that I can monitor them while using the computer.

History
Why does this post require attention from curators or moderators?
You might want to add some details to your flag.
Why should this post be closed?

1 comment thread

Scope and details (1 comment)

2 answers

+1
−0

The Linux kernel exposes that via the Thermal Sysfs. You can then print the temperatures with

cat /sys/class/thermal/thermal_zone*/temp

You are better off, however, using tools that collate sensors' information. The typical tool is sensors from the lm-sensors package, but better for visualization is a GUI such as psensor.

Psensor

The description of each sensor is often not quite clear though. Reading from some other sources (1 2), in general that depends on the manufacturer and installed driver for the corresponding sensors, so it might be worth it checking the manufacturer's resources if you want a cleaner result — but it is likely going to be non-free software.

Lenovo, for instance, has a "Lenovo Diagnostic" tool; In section '5.6 Temperature Tool' of its manual you can see that the results are better broken down:

Lenovo Diagnostic temperature tool

History
Why does this post require attention from curators or moderators?
You might want to add some details to your flag.

2 comment threads

KDE system monitor (3 comments)
`lm-sensors` must be installed in the terminal (1 comment)
+1
−0

You can use something like conky which displays information on your desktop. This can be fairly easily configured to show all kinds of information.

History
Why does this post require attention from curators or moderators?
You might want to add some details to your flag.

0 comment threads

Sign up to answer this question »