使用免费的 Radeon (ATI) 驱动程序省电

GGs*_*las 5 ati power-management radeon drivers

我使用的是 Ubuntu 11.10,没有 ATI 显卡的专有驱动程序,我非常喜欢它的性能。

当我使用带电池的笔记本电脑时,我唯一需要的是激活省电功能。谢谢

Pan*_*her 6

这个博客

您有两个选项,都涉及编辑/etc/init.d/ati-power-save选项

gksu gedit /etc/init.d/ati-power-save
Run Code Online (Sandbox Code Playgroud)

第一种方法称为“dynpm”,第二种方法称为“profile”方法。

动态方法


Dynpm 方法更现代、更高效,但它可能不适用于某些硬件组合(例如我的)。

添加这些行:

#!/bin/sh

# ATI power save
echo dynpm > /sys/class/drm/card0/device/power_method
Run Code Online (Sandbox Code Playgroud)

重启

剖面法


电源配置文件方法基于您手动或在启动时使用脚本(如我们在此处创建的脚本)选择的四种电源配置文件。您可以在 1. “默认” 2. “自动” 3. “低” 4. “高”之间进行选择。

将这些行添加到文件中

#!/bin/sh

# ATI power save
echo profile > /sys/class/drm/card0/device/power_method
echo low > /sys/class/drm/card0/device/power_profile
Run Code Online (Sandbox Code Playgroud)

重启

任一方法


保存脚本并使其可执行

chmod a+x /etc/init.d/ati-power-save
Run Code Online (Sandbox Code Playgroud)

有关其他详细信息,请参阅博客。