2

Heyo,

I'm trying to disable the frequency scaling of one of my CPU and set the frequency to the maximum

I tried using cpupower -c 1 frequency-set -g governor and -d 2600000 or with cpufreq-set but nothing works. I get this:

cpufreq

Hennes
  • 65,804
  • 7
  • 115
  • 169

1 Answers1

1

You can use pstate-frequency to control the Intel P-state driver:

sudo pstate-frequency -S -n <integer percentage>

This sets the minimum frequency to whatever you choose.

zhongfu
  • 149