Friday, May 3, 2024
 Popular · Latest · Hot · Upcoming
6
rated 0 times [  6] [ 0]  / answers: 1 / hits: 6019  / 2 Years ago, mon, june 6, 2022, 11:47:53

I'm using Ubuntu 11.10 without the proprietary driver for ATI video cards and I like very much the performance.



My only need is activate power saving when I use the laptop with the battery.
Thanks


More From » drivers

 Answers
1

From this blog



You have two options, both involve editing /etc/init.d/ati-power-save options



gksu gedit /etc/init.d/ati-power-save



First method is called “dynpm” and the second method is called “profile” method.




dynpm method







Dynpm method is more modern and efficient but it might not work with some hardware combinations (like mine for example).




Add these lines:



#!/bin/sh

# ATI power save
echo dynpm > /sys/class/drm/card0/device/power_method


Reboot



Profile method







Power profile method is based on four power profiles you choose manually or at boot time using script like the one we are creating here. You can choose between 1. “default” 2. “auto” 3. “low” 4. “high”.




Add these lines to the file



#!/bin/sh

# ATI power save
echo profile > /sys/class/drm/card0/device/power_method
echo low > /sys/class/drm/card0/device/power_profile


Reboot



Either method






Save the script and make it executable



chmod a+x /etc/init.d/ati-power-save


See the blog for additional details.


[#40860] Tuesday, June 7, 2022, 2 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
defendle

Total Points: 219
Total Questions: 131
Total Answers: 112

Location: Finland
Member since Sat, Nov 6, 2021
3 Years ago
;