我试过这个(如何编写启动时运行的脚本?)在启动时自动运行油门停止脚本。但我不能让它工作。
我已经尝试过这里描述的方法(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
一些可能有帮助的信息:
- PC:戴尔 Vostro 15 3568
- cpuinfo: Intel(R) Core(TM) i3-6100U CPU @ 2.30GHz
- cpufreq/scaling_driver:intel_pstate
- cpufreq/scaling_governor:省电
- 当前频率:400 MHz
- linux版本:Ubuntu 20.04
这对我有用:https ://forums.linuxmint.com/viewtopic.php?t=275464
我知道与薄荷有关,但 Ubuntu 用户可能会从中受益。谢谢!