我可以使用 cpupowerd 来超频我的 CPU 吗?

我可以使用 cpupowerd 来超频我的 CPU 吗?

我一直在尝试寻找方法来超频我那台相当老旧的 CPU,AMD Turion 64 x2 Tl-56 1.8ghz 双核。我的 Acer Aspire 5100 系列 BIOS 没有提供超频选项。参考这个问题我用谷歌找到了这个帖子,我得出结论,唯一支持 AMD k8 处理器系列的实用程序是 cpupowerd。我下载了代码这里,编译它

make && sudo make install

使用以下方式加载 msr 内核模块

sudo modprobe msr

并运行它

sudo ./cpupowerd --freq "0|1900"

返回以下消息:

cpupowerd 0.2.1 written by Markus Strobl.
WARNING: This program could cause damage to your Hardware!
Frequency 1900 MHz not available!

然后我就这么做了

sudo ./cpupowerd -s

返回

cpupowerd 0.2.1 written by Markus Strobl.
WARNING: This program could cause damage to your Hardware!
Vendor                      : AMD
Family                      : K8
Model                       : 4
  Mastercpuid               : 0
    Affected cpuids         : 0 1
    Current voltage (VID)   : 1.1000 V (18)
    Current frequency (FID) : 1800 MHz (10)
    Supported frequencies   : 800 1600 1800 MHz

它不想将频率设置为支持频率列表以外的值。有没有办法覆盖或更改它?或者,是否有其他实用程序可用于在 Ubuntu 上超频我的 CPU?

我可以按原样使用 cpupowerd 将频率设置为 800mhz 和 1.6ghz。

答案1

支持频率 : 800 1600 1800 MHz

这告诉您 CPU 核心允许的频率。如果您不使用这些,cpupowerd 将拒绝更改频率。请尝试使用:

sudo ./cpupowerd --freq "0|1800"
sudo ./cpupowerd --freq "0|1600"
sudo ./cpupowerd --freq "0|800"

另外,请记住并非所有核心都允许超频,我怀疑这正在发生。

相关内容