Some years later...
I had the same problem with cpupower
in Ubuntu 20.04.4 LTS.
I tried installing linux-tools-common
, linux-tools-generic
, and linux-tools-oem
to no avail. I always got the message
cpupower not found for kernel 5.14.0-1033
I needed linux-tools specifically for this kernel. Sadly, in the synaptic package manager
there was no trace of such kernel. And even the command sudo apt-get install -y linux-tools-$(uname -r)
gave me the message
Unable to locate package linux-tools-5.14.0-1033-oem
Solution:
- Download the
.deb
package at the official site for Ubuntu Package Search searching for linux-tools-5.14.0-1033-oem
- Install the package easily on command line with
sudo dpkg -i mypackage.deb
(watch out that you have already all dependencies installed ;))
In my case I had to install two packages: first, the dependency linux-oem-5.14-tools-5.14.0-1033_5.14.0-1033.36_amd64.deb
and, then, the main package linux-tools-5.14.0-1033-oem_5.14.0-1033.36_amd64.deb
linux-tools-common
which was in the installation, not installed later by me through APT – Zanna Feb 02 '17 at 08:22