使用指定的调控器使 indicator-cpufreq 启动

使用指定的调控器使 indicator-cpufreq 启动

我已经安装了indicator-cpufreq,一切正常,但我面临的事实是,只有两个调节器状态可用 -PerfomancePowersave(始终在启动时设置)。我尝试将其设为Perfomance默认值总是失败。更改“ondemand.d”脚本编辑失败(仍然默认加载“Powersafe”)

我的 CPU 规格:Core i7-3630QM 2.4Ghz 操作系统:Ubuntu 16.04 LTS

感谢您的建议

更新: 使 powersave 调节器永久生效不工作

答案1

如果我理解正确,问题如下:“如何更改/设置 indicator-cpufreq 在启动/默认时使用的调节器状态”。因此,以下是对我有用的解决方案(Ubuntu 17.04):编辑 /lib/systemd/set-cpufreq,以便您想要的调节器用作 switch 部分中的第一个案例,即只需更改案例的顺序。因此,如果我想在启动时使用“powersave”,那么我将 /lib/systemd/set-cpufreq 更改为如下所示,注意行

*powersave*)

紧接着

case $governors in

结果如下:

#! /bin/sh
# Set the CPU Frequency Scaling governor to "ondemand"/"powersave" where available
set -eu

FIRSTCPU=`cut -f1 -d- /sys/devices/system/cpu/online`
AVAILABLE="/sys/devices/system/cpu/cpu$FIRSTCPU/cpufreq/scaling_available_governors"
DOWN_FACTOR="/sys/devices/system/cpu/cpufreq/ondemand/sampling_down_factor"

[ -f $AVAILABLE ] || exit 0

read governors < $AVAILABLE
case $governors in
    *powersave*)
            GOVERNOR="powersave"
            break
            ;;
    *interactive*)
            GOVERNOR="interactive"
            break
            ;;
    *ondemand*)
            GOVERNOR="ondemand"
            case $(uname -m) in
                    ppc64*)
                            SAMPLING=100
                    ;;
            esac
            break
            ;;
    *)
            exit 0
            ;;
esac

[ -n "${GOVERNOR:-}" ] || exit 0

echo "Setting $GOVERNOR scheduler for all CPUs"

for CPUFREQ in /sys/devices/system/cpu/cpu*/cpufreq/scaling_governor
do
    [ -f $CPUFREQ ] || continue
    echo -n $GOVERNOR > $CPUFREQ
done
if [ -n "${SAMPLING:-}" ] && [ -f $DOWN_FACTOR ]; then
    echo -n $SAMPLING > $DOWN_FACTOR
fi

相关内容