Monitor gpu temperature: Difference between revisions

From finninday
Jump to navigation Jump to search
(Created page with "* how do I get the current temperature of my nvidia GPU? <pre> rday@merkli:~$ nvidia-settings -q [gpu:0]/GPUCoreTemp | grep Attribute | sed -e "s/.*.://g" -e "s/\.//g" 47 </pre…")
 
No edit summary
Line 7: Line 7:


The result is in Celsius.
The result is in Celsius.
Without all the filtering, it looks like this:
<pre>
rday@merkli:~$ nvidia-settings -q [gpu:0]/GPUCoreTemp
  Attribute 'GPUCoreTemp' (merkli:0[gpu:0]): 47.
    'GPUCoreTemp' is an integer attribute.
    'GPUCoreTemp' is a read-only attribute.
    'GPUCoreTemp' can use the following target types: X Screen, GPU.
</pre>

Revision as of 00:43, 15 July 2011

  • how do I get the current temperature of my nvidia GPU?
rday@merkli:~$ nvidia-settings -q [gpu:0]/GPUCoreTemp | grep Attribute | sed -e "s/.*.://g" -e "s/\.//g"
 47

The result is in Celsius.

Without all the filtering, it looks like this:

rday@merkli:~$ nvidia-settings -q [gpu:0]/GPUCoreTemp

  Attribute 'GPUCoreTemp' (merkli:0[gpu:0]): 47.
    'GPUCoreTemp' is an integer attribute.
    'GPUCoreTemp' is a read-only attribute.
    'GPUCoreTemp' can use the following target types: X Screen, GPU.