Ubuntu 18.04 内核(5.0.13)cpupower 无法运行

Ubuntu 18.04 内核(5.0.13)cpupower 无法运行

我正在使用联想 Thinkpad e490。我安装了 Windows 双启动,但遇到了一些问题,因此我将内核更新为 5.0.13(我在论坛上看到此版本修复了一些问题,但新版本可能也不错)。现在我做了一些速度测试,发现我的 CPU 比应有的慢。因此,我尝试使用 将 CPU 调速器设置为性能cpupower。但不知何故它没有安装。当我cpupower在终端中输入时,我得到:

WARNING: cpupower not found for kernel 5.0.13-050013

You may need to install the following packages for this specific kernel:
    linux-tools-5.0.13-050013-generic
    linux-cloud-tools-5.0.13-050013-generic

  You may also want to install one of the following packages to keep up to date:
    linux-tools-generic
    linux-cloud-tools-generic

当我尝试使用 安装这些提到的包时,没有找到所有这些包sudo apt-get install <packagename>

当我跑步时sudo apt-get install cpupower我得到:

Reading package lists... Done
Building dependency tree       
Reading state information... Done
E: Unable to locate package cpupower

还有其他方法可以改变 CPU 调节器吗?而且这种方法cpupower确实不支持所有内核?

我也尝试了几个其他内核,但仍然有同样的问题。

答案1

尝试为您的核心名称安装 linux-tools。

sudo apt-get install -y linux-tools-common linux-tools-$(uname -r)

或者运行

uname -r

它返回(例如) 5.11.0-44-通用 然后安装你的版本

sudo apt-get install -y linux-tools-5.11.0-44-generic

看看答案 https://unix.stackexchange.com/questions/341927/how-to-install-cpupower-on-ubuntu-14-04-kernel-4-6-0

答案2

我不确定这是否有帮助,但我在安装 cpupower 时收到了同样的消息,E: Unable to locate package cpupower 我在 ubuntu 软件包站点上看到它的要求是linux-tools-generic,所以我成功安装了它。然而,在启动它时,我收到了上面的消息,它需要不同的内核,所以我还安装了列出的内核建议linux-tools-5.0.13-050013-generic。所以也许首先安装一个通用库linux-tools-generic有助于推动安装更具体的内核包,除非你也错过了一些存储库配置和库。我已经将 Bionic 存储库添加到我的 fossa 存储库中,尽管我仍然遇到很多定位各种软件包的问题,​​因为我安装了精简版的 ubuntu,如果可能的话。

相关内容