How do I find the GPU temperature of an Intel card using command-line? - Printable Version +- Linux Lite Forums (https://www.linuxliteos.com/forums) +-- Forum: Hardware - Support (https://www.linuxliteos.com/forums/forumdisplay.php?fid=6) +--- Forum: Video Cards (https://www.linuxliteos.com/forums/forumdisplay.php?fid=22) +--- Thread: How do I find the GPU temperature of an Intel card using command-line? (/showthread.php?tid=6446) |
How do I find the GPU temperature of an Intel card using command-line? - m654321 - 09-14-2019 I sometimes use the 'sensors' with/without the 'watch' command in terminal to check on CPU temperatures. On the same machine, I'd like to check GPU temperatures - I can find info on this for nvidia GPUs on the web, but not Intel ones. The Dell Lattitude D630 in question (my daily driver - see signature) has an Intel card - details of its video card are contained in the following: Code: mike@D630:~$ sudo lshw -C display Using command-line, how can I get the GPU temperatures? Re: How do I find the GPU temperature of an Intel card using command-line? - Moltke - 09-14-2019 Quote:Using command-line, how can I get the GPU temperatures?You might try with Code: inxi -s Code: inxi -s To install just run Code: sudo apt-get install inxi Hope this helps! Re: How do I find the GPU temperature of an Intel card using command-line? - trinidad - 09-14-2019 LL comes with inxi already installed. TC Re: How do I find the GPU temperature of an Intel card using command-line? - m654321 - 09-15-2019 [member=7109]Moltke[/member] Thanks for your reply - unfortunately this doesn't seem to work for the GPU (at least for the Dell Latitude D630), see below: Code: mike@D630:~$ inxi -s For some reason it says mobo is not available (not detected), and of course the Intel card is integrated into the mobo, so therefore no GPU temperature reading ... I notice the temperatures on your setup are pretty high (75-76 C); maybe more cooling needed ... Re: How do I find the GPU temperature of an Intel card using command-line? - Moltke - 09-15-2019 Quote:product: Mobile GM965/GL960 Integrated Graphics Controller (primary)Upon some reading, it seems that on machines with no dedicated GPU but integrated ones only, both cpu and gpu temps are the same. However, you could try finding temps on "/sys/class/" from a terminal do Code: ls /sys/class/ Code: $ ls /sys/class/ Code: cat /sys/class/hwmon/hwmon0/temp1_input Code: 67000 Code: cat /sys/class/graphics/fb0/device/hwmon/hwmon2/temp1_input Code: 66000 Code: watch -c cat /sys/class/graphics/fb0/device/hwmon/hwmon2/temp1_input Hope this helps! Re: How do I find the GPU temperature of an Intel card using command-line? - trinidad - 09-15-2019 You can also add to Lite's conky widget with something like below, but you'll have to figure out which is the right number sensor. ${hwmon temp 2}C Also possible with lm sensors like the syntax below for conky for CPU multiple cores ${exec sensors | grep 'Core 0' | awk '{print $3}' | cut -c2-3}°C Updates will be at conky's pace.You can also display in conky from cat like already suggested. TC Re: How do I find the GPU temperature of an Intel card using command-line? - Moltke - 09-15-2019 (09-15-2019, 03:35 PM)trinidad link Wrote: You can also add to Lite's conky widget with something like below, but you'll have to figure out which is the right number sensor. [member=5916]trinidad[/member] I was just thinking in this. I just can't figure out how to. BTW, this: Code: ${exec sensors | grep 'Core 0' | awk '{print $3}' | cut -c2-3}°C Code: ${hwmon temp 2}C EDIT: Aha! Figured it out Code: ${execi 60 sensors | grep temp1 | cut -c 16-19}°C Re: How do I find the GPU temperature of an Intel card using command-line? - Moltke - 09-15-2019 (09-15-2019, 12:59 PM)m654321 link Wrote: [member=7109]Moltke[/member] Yes, I have to do something about it. I used to have this "cooling fan" I placed under the laptop but it broke and I haven't been able to buy a new one, they got pretty expensive down here. Also, temperatures here where I live are pretty high right now, it is like hell on earth whenever I go out lol |