7
$ cat /proc/cpuinfo | grep -iE "model name|cpu MHz|processor"
processor    : 0
model name   : Intel(R) Core(TM)2 Quad CPU    Q6600  @ 2.40GHz
cpu MHz      : 1600.000
processor    : 1
model name   : Intel(R) Core(TM)2 Quad CPU    Q6600  @ 2.40GHz
cpu MHz      : 1600.000
processor    : 2
model name   : Intel(R) Core(TM)2 Quad CPU    Q6600  @ 2.40GHz
cpu MHz      : 1600.000
processor    : 3
model name   : Intel(R) Core(TM)2 Quad CPU    Q6600  @ 2.40GHz
cpu MHz      : 1600.000

As far as the model name goes, why is it being reported @ 2.40 Ghz when each processor's cpu MHz is 1600?

user784637
  • 1,542
  • 7
  • 35
  • 52

2 Answers2

11

2.4GHz is what the core is rated for. 1.6GHz is what SpeedStep is currently running it at.

Ignacio Vazquez-Abrams
  • 45,939
  • 6
  • 79
  • 84
6

Your car might have a maximum speed of 240 km/h. It does not mean it would be necessary to drive that fast all the time.

Modern CPUs are also throttling their speed on-demand basis. A typical desktop usage rarely needs maximum speed, so CPU will run on lower speed to save energy and also for lowering the temperature. What you are seeing is normal and expected behaviour.

Janne Pikkarainen
  • 31,852
  • 4
  • 58
  • 81