You are not logged in.
Pages: 1
I'm currently manually configuring my xorg.conf for my NVIDIA card, and I found an improvement for the NVIDIA article where it explains how to get the temperature from your card.
To display the GPU temp in the shell, use nvidia-settings as follows:
$ nvidia-settings -q gpucoretemp
This will output something similar to the following:
Attribute 'GPUCoreTemp' (hostname:0.0): 41. 'GPUCoreTemp' is an integer attribute. 'GPUCoreTemp' is a read-only attribute. 'GPUCoreTemp' can use the following target types: X Screen, GPU.
The GPU temps of this board is 41 C.
One can combine grep and cut or sed, awk, etc. to parse the output to a two digit number for use in utils such as rrdtool or conky, among others.
Example:
$ nvidia-settings -q gpucoretemp | grep host | cut -c42-43 41
However, nvidia-settings has its own way to do that whole grep and cut thing. My proposal:
To display the GPU temp in the shell, use nvidia-settings as follows:
$ nvidia-settings -q gpucoretemp
This will output something similar to the following:
Attribute 'GPUCoreTemp' (hostname:0.0): 41. 'GPUCoreTemp' is an integer attribute. 'GPUCoreTemp' is a read-only attribute. 'GPUCoreTemp' can use the following target types: X Screen, GPU.
The GPU temps of this board is 41 C.
In order to get just the temperature for use in utils such as rrdtool or conky, among others:
$ nvidia-settings -q gpucoretemp -t 41
I wasn't sure where to put this proposal, so I put it in this forum. I couldn't find an edit button in the wiki
Offline
There are edit buttons on every section when you are logged in. You should make this change yourself.
Offline
Alright, I had to register to see those links first. I added the change, thanks for the help
Offline
Good find .
Allan-Volunteer on the (topic being discussed) mailn lists. You never get the people who matters attention on the forums.
jasonwryan-Installing Arch is a measure of your literacy. Maintaining Arch is a measure of your diligence. Contributing to Arch is a measure of your competence.
Griemak-Bleeding edge, not bleeding flat. Edge denotes falls will occur from time to time. Bring your own parachute.
Offline
Pages: 1