Sunday, May 5, 2024
 Popular · Latest · Hot · Upcoming
9
rated 0 times [  9] [ 0]  / answers: 1 / hits: 11226  / 1 Year ago, sat, january 21, 2023, 9:08:45

Can I tweak or configure Radeon driver to reduce overheating. My GPU gets 70-80C temp on start.
I don't want Catalyst by now because they are very slow for 2D.



using mobility hd4570, Ubuntu 12.04 x64 3.2.0-24-generic.


More From » 12.04

 Answers
3

Tosho, I had exactly the same problem about setting the power_profile at startup and keeping it thourgh supend-resume applying the common solutions (as described here) and finally found a working alternative solution using pm-utils. I'm not sure if it is the best way to do it (I'm new to Linux) but it does all I wished for: Set the radeon power_profile to low on boot and retain that setting after suspend-resume.



Step 1: Create hook



gksudo gedit /usr/lib/pm-utils/power.d/radeon-power_profile


Step 2: Fill in the desired setting



#!/bin/sh

echo profile > /sys/class/drm/card0/device/power_method
echo low > /sys/class/drm/card0/device/power_profile

exit 0


Step 3: Make it executable



sudo chmod +x /usr/lib/pm-utils/power.d/radeon-power_profile


That's it :)


[#37671] Saturday, January 21, 2023, 1 Year  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
nerta

Total Points: 414
Total Questions: 103
Total Answers: 97

Location: England
Member since Wed, Apr 19, 2023
1 Year ago
;