我正在尝试通过使用脚本在启动后更改设置来改善笔记本电脑的能耗。powertop
我编写的脚本基于 Ric Klaren 在这篇文章下的回答:使用 `powertop --auto-tune` 而不影响 USB 和触摸板
脚本如下:
#!/bin/bash
powertop --auto-tune
HIDDEVICES=3-1
for i in ; do
echo -n "Enabling " | cat - /sys/bus/usb/devices//product
echo 'on' > /sys/bus/usb/devices//power/control
done
不知何故,它没有按预期工作,并且启用了所有选项,包括与我的 USB 鼠标有关的选项。如果我运行脚本,则输出如下:
modprobe cpufreq_stats failedLoaded 127 prior measurements
RAPL device for cpu 0
RAPL Using PowerCap Sysfs : Domain Mask d
RAPL device for cpu 0
RAPL Using PowerCap Sysfs : Domain Mask d
Devfreq not enabled
glob returned GLOB_ABORTED
To show power estimates do 221 measurement(s) connected to battery only
Leaving PowerTOP
谢谢!