Weblog entry #5 for emeitner
On my IBM T42 work laptop running Ubuntu "Drake"(FGLRX drivers from the xorg-driver-fglrx package) I found that the GPU temperature was at 120F when idle. First, I did not like that the fan was running all the time(now that it is summer) just to cool an idle chip. Second, I did not like this additional drain on the batteries.
Using info gleaned from here[thinkwiki.org] I did the following:
Created /etc/acpi/ac.d/fglrx-powersave.sh:
ATICONFIG=/usr/bin/aticonfig
if [ -x $ATICONFIG ] ; then
getXconsole
su $user -c "($ATICONFIG --set-powerstate=2)"
fi
And /etc/acpi/battery.d/fglrx-powersave.sh
ATICONFIG=/usr/bin/aticonfig
if [ -x $ATICONFIG ] ; then
getXconsole
su $user -c "($ATICONFIG --set-powerstate=1)"
fi
It helps somewhat. The fan still runs continuously but now the GPU only runs at 115F when idle. There is always Rovclock[thinkwiki.org]. Maybe I'll try that later.(it seems to me that a "powernowd" for the GPU is what we need. How would one gauge the load on the GPU though?)
Comments on this Entry
[ Send Message | View Utumno's Scratchpad | View Weblogs ]
So, is there a way to read hardware sensors ona Thinkpad?
[ Parent | Reply to this comment ]
[ Send Message | View emeitner's Scratchpad | View Weblogs ]
$ cat /proc/acpi/ibm/thermal temperatures: 44 44 31 50 32 -128 28 -128Install GNOME Sensors Applet and you'll get a nice way to display these temperatures on your panel.
[ Parent | Reply to this comment ]