I'm setting up conky and I would like to add the CPU frequency, but if I put
${freq_g cpu0} Ghz
I get 1.2Ghz. Why is that? My CPU is 2.8Ghz.
|
I'm setting up conky and I would like to add the CPU frequency, but if I put
I get 1.2Ghz. Why is that? My CPU is 2.8Ghz. |
||||
|
|
|
From the conky man page. cpu (cpuN)
freq_g (n)
You most likely have something like SpeedStep enabled which is acting like a governor on a car, regulating the speed of the cores inside your CPU. You can confirm that this is going on by looking at the output of this command:
The 2 numbers that matter are the 2.67GHz, that the GHz that my CPU is rated to operate at followed by the number 1199.00, this is what my CPU is allowed to run at by the governor setup on my Linux laptop. You can see what governor is currently configured like so:
You can override your governor by doing the following, using one of the governor's listed above:
References |
|||
|
|
|
That shows the current CPU frequency, you've probably got CPU frequency scaling activated, so your CPU "slows down" when there's not much to do, and if you do something CPU intensive it should speed up to 2.8 and/or something in between, it's normal. |
|||
|
|