我想限制我的 CPU,我有一个 i5-8265U,它的频率高达 3.9GHz,但我很少需要这个速度。
现在,如果某些原因导致高负载,CPU 就会升高,风扇也会发出噪音。
已经设置为powersave
$ cat /sys/devices/system/cpu/cpu0/cpufreq/scaling_governor
powersave
当userspace
我尝试时不可用
sudo cpufreq-set -f 2.0
如何将这样的 CPU 限制到最大 2GHz?
答案1
如果您的 BIOS 中没有这样的设置,则针对 Linux 的解决方案在这里可以很好地解决:http://notepad2.blogspot.com/2014/11/a-script-to-turn-off-intel-cpu-turbo.html
我在 GitHub 上创建了该脚本的增强版本来切换涡轮增压:
https://github.com/rubo77/intel-turbo-boost
旧版本:
只需创建一个/usr/local/sbin/turbo-boost.sh
脚本:
#!/bin/bash
is_root () {
return $(id -u)
}
has_sudo() {
local prompt
prompt=$(sudo -nv 2>&1)
if [ $? -eq 0 ]; then
# has_sudo__pass_set
return 0
elif echo $prompt | grep -q '^sudo:'; then
# has_sudo__needs_pass"
return 0
else
echo "no_sudo"
return 1
fi
}
if ! is_root && ! has_sudo; then
echo "Error: need to call this script with sudo or as root!"
exit 1
fi
modprobe msr
if [[ -z $(which rdmsr) ]]; then
echo "msr-tools is not installed. Run 'sudo apt-get install msr-tools' to install it." >&2
exit 1
fi
if [[ ! -z "$1" && "$1" != "toggle" && "$1" != "enable" && "$1" != "disable" ]]; then
echo "Invalid argument: $A" >&2
echo ""
echo "Usage: $(basename $0) [disable|enable|toggle]"
exit 1
fi
A=$1
cores=$(cat /proc/cpuinfo | grep processor | awk '{print $3}')
initial_state=$(rdmsr -p1 0x1a0 -f 38:38)
for core in $cores; do
if [[ $A == "toggle" ]]; then
echo -n "state was "
if [[ $initial_state -eq 1 ]]; then
echo "disabled"
A="enable"
else
echo "enabled"
A="disable"
fi
fi
if [[ $A == "disable" ]]; then
wrmsr -p${core} 0x1a0 0x4000850089
fi
if [[ $A == "enable" ]]; then
wrmsr -p${core} 0x1a0 0x850089
fi
state=$(rdmsr -p${core} 0x1a0 -f 38:38)
if [[ $state -eq 1 ]]; then
echo "core ${core}: disabled"
else
echo "core ${core}: enabled"
fi
done
给它
chmod +x /usr/local/sbin/turbo-boost.sh
现在你可以打电话
sudo turbo-boost.sh disable
sudo turbo-boost.sh enable
sudo turbo-boost.sh toggle
启动时自动禁用涡轮增压
如果您想在启动后一分钟自动启动,您可以允许在没有密码的情况下执行/etc/sudoers
:
# Allow command for my user without password
my_username_here ALL = NOPASSWD: /usr/local/sbin/turbo-boost.sh
然后创建一个延迟60秒的systemd启动脚本:
创建脚本/etc/systemd/system/turbo-boost-disable.service
:
[Unit]
Description=disables turbo-boost
[Service]
TimeoutStartSec=infinity
ExecStartPre=/bin/sleep 60
ExecStart=/usr/local/sbin/turbo-boost.sh disable
[Install]
WantedBy=default.target
更新 systemd:
sudo systemctl daemon-reload
sudo systemctl enable turbo-boost-disable
在桌面上添加切换按钮
如果您更经常想要手动控制涡轮增压,您可以在桌面上添加一个按钮:
sudo gedit /usr/share/applications/toggle-turbo-boost.desktop
[Desktop Entry]
Version=1.0
Type=Application
Terminal=true
Name=toggle turbo-boost
Icon=/usr/share/icons/Humanity/apps/64/gkdebconf-icon.svg
Exec=sudo /usr/local/sbin/turbo-boost.sh toggle
X-MultipleArgs=false
Categories=GNOME;GTK;
StartupNotify=true
GenericName=Toggle Turbo-Boost
Path=/tmp/
- 按SUPER并搜索“Toggle Turbo Boost”,您将看到该图标。
- 按 ENTER 执行,或右键单击“添加到收藏夹”,这将在快速启动栏中添加一个按钮。