[Share Experiences] 轻薄本降噪 - 限制CPU运行的最大频率
Tofloor
poster avatar
xuwentang
deepin
2025-05-11 00:35
Author

安装 cpupower 工具

sudo apt install linux-cpupower

创建cpupower.service服务,对应 /etc/systemd/system/cpupower.service 文件,其内容如下:

[Unit]
Description=Set CPU max frequency
[Service]
ExecStart=/usr/bin/cpupower frequency-set -u 4000MHz -g powersave
[Install]
WantedBy=multi-user.target

设置服务开机自启,开机时自动执行服务中的命令,限制CPU最大频率

sudo systemctl daemon-reload
sudo systemctl enable cpupower.service
Reply Favorite View the author
All Replies
xuwentang
deepin
2025-05-11 00:43
#1

从 AMD 4800H 到 AMD 7840HS,在windows11系统中,存在一定概率的低负载蓝屏问题(CPU核心低压高频率),例如浏览器看视频、word编辑文档。在liunx系统中,对应的问题是,偶尔低负载时,桌面卡死、键盘无响应。

限制CPU的最大运行频率,能够有效缓解笔记本 AMD CPU导致的系统崩溃问题。

Reply View the author
jjcui8595
deepin
Resources Team Moderator
2025-05-11 06:59
#2

建议出现问题的机器才使用,毕竟会影响性能

Reply View the author