如何在启动时运行油门停止脚本?

如何在启动时运行油门停止脚本?

我已经尝试过这个(如何编写启动时运行的脚本?) 在启动时自动运行油门停止脚本。但我无法让它工作。

我已经尝试过这里描述的方法(GUI 应用程序、cron 作业和 /rc.local):https://www.fosslinux.com/42796/how-to-auto-execute-linux-startup-scripts-and-commands.htm

并且,我还尝试了以下工具(https://github.com/agoose77/throttlestop),但是没有起到作用。

剧本:

#!/bin/sh

# Prevent unset variable problems
set -u

# Change CPU setting
cpufreq-set -c 0 -g performance
cpufreq-set -c 1 -g performance
cpufreq-set -c 2 -g performance
cpufreq-set -c 3 -g performance
modprobe msr
wrmsr 0x1FC 2359388

一些可能有帮助的信息:

  • 个人电脑:戴尔 Vostro 15 3568
  • cpuinfo:英特尔(R) 酷睿(TM) i3-6100U CPU @ 2.30GHz
  • cpufreq/scaling_driver:intel_pstate
  • cpufreq/scaling_governor:省电
  • 电流频率:400MHz
  • Linux 版本:Ubuntu 20.04

答案1

这对我有用:https://forums.linuxmint.com/viewtopic.php?t=275464

我知道这与 mint 有关,但 Ubuntu 用户可能会从中受益。谢谢!

相关内容