Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to get the temperature of motherboard of a PC (and other hardware statistics)?

Tags:

does any one know how to get the current motherboard, processor or HD temperature statistics?
In GNU/Linux, I know I could use something like hddtemp or sensord to get the info, and then parse it... but in Windows: How can I do this? And, Can it be done with with C# or Java or any other hight level programming language?
Thanks!

like image 617
Rodrigo Amaya Avatar asked Sep 23 '08 20:09

Rodrigo Amaya


People also ask

How do I check motherboard temperature?

View your PC temperature in the BIOS/UEFI To access it, turn on your PC and press a specific key during startup — usually F12, ESC, F2, or DEL. Once BIOS/UEFI is open, it shows you the CPU temperature right on the main screen. This thermometer feature is part of the core software of your motherboard.

How do I check my computer's hardware temperature?

If you want even more detail, click the Show hidden icons button in the system tray located at the right edge of your Windows taskbar. You'll see a temperature listing for every individual CPU core in your computer. Per-core CPU temperature readings provided by the Core Temp app.


1 Answers

I would argue that when the right configurations are in place, it can be superior to windows's one.

http://www.lm-sensors.org/ is what does all the work. I had that plugged into RRDgraph & Munin and I was monitoring the temperature of my room over a period of almost a year and had nice pretty graphs. Also showed me my CPU fan was slowly wearing down, and I could see the line sloping down over a long period and know it was on the way out.

http://www.lm-sensors.org/browser/lm-sensors/trunk/doc/developers/applications is what you want.

(Oh wait, I fail. You're on *nix wanting to do it on Windows, my bad :( ..um.. well. Good luck. Maybe I'll leave this here in case somebody finds your post while searching for the contrary)

Back when I did use windows, all I recall is Ye' Old Motherboard Monitor ( Discontinued ). Wiki article says there is speedfan and that looks like your best option. Programmatically, I guess you'll have to find the hardware specs and dig through Windows API and stackloads of arbitrary bus address offsets.

like image 194
Kent Fredric Avatar answered Sep 30 '22 17:09

Kent Fredric