You are not logged in.
Pages: 1
I have been trying to get the Temps for my 9400GT at CLI.
Lm_sensors doesn't read my vid card and I have tried using "nvidia-settings -q GPUCoreTemp"
with no luck. When I do I get the following:
Attribute 'GPUCoreTemp' (nellie:0.0): 41.
'GPUCoreTemp' is an integer attribute.
'GPUCoreTemp' is a read-only attribute.
'GPUCoreTemp' can use the following target types: X Screen, GPU.
Any help would be nice! This is for a script to display System info.
Last edited by orphius1970 (2009-11-08 15:16:13)
AMD Phenomx3, 4gb ram, Nvidia Gforce 9400gt,
MSI K9N2 Diamond Motherboard, Arch x86_64
Offline
try this
nvidia-settings -q GPUCoreTemp | awk '{if (NR==2) {print $4}}'
Offline
thank you! Is there a way to display it in farhenheit?
AMD Phenomx3, 4gb ram, Nvidia Gforce 9400gt,
MSI K9N2 Diamond Motherboard, Arch x86_64
Offline
nvidia-settings -q GPUCoreTemp | awk '{if (NR==2) {print ($4*9)/5+32}}'
Celsius in Fahrenheit = (( TCelsius × 9 ) / 5 ) + 32
Offline
Awesome hsteind80!!!
Thank you
Maybe you can help with this?
When i put that in a script... It doesn't output a result...
When I run it from command line it does... I am new to the whole scripting thing.
Any help would be appreciated.
EDITED:
Figured it out!
Last edited by orphius1970 (2009-11-08 16:31:40)
AMD Phenomx3, 4gb ram, Nvidia Gforce 9400gt,
MSI K9N2 Diamond Motherboard, Arch x86_64
Offline
Ok now I have a new problem. I just installed another video card. So now I have 2 on
a hybrid sli setup. How do I change the afore mentioned command for the individual
cards????
NEVERMIND!
Figured it out changed it as such:
"nvidia-settings -q [gpu:0]/GPUCoreTemp | awk '{if (NR==2) {print ($4*9)/5+32}}'"
"nvidia-settings -q [gpu:1]/GPUCoreTemp | awk '{if (NR==2) {print ($4*9)/5+32}}'"
Thank you!
Last edited by orphius1970 (2009-11-09 00:05:33)
AMD Phenomx3, 4gb ram, Nvidia Gforce 9400gt,
MSI K9N2 Diamond Motherboard, Arch x86_64
Offline
Pages: 1