Intel Core2Duo E4400 프로세서가 다른 속도로 실행됩니까?

Intel Core2Duo E4400 프로세서가 다른 속도로 실행됩니까?

오늘 내 오래된 컴퓨터를 확인하다가 뭔가 이상한 점을 발견했습니다. CPU는 Intel Core2Duo E4400(2M 캐시, 2.00GHz, 800MHz FSB)입니다.

저는 Linux를 실행 중이므로 lscpu 및 cat /proc/cpuinfo 명령을 실행했습니다. 결과는 다음과 같습니다.

root:~$ lscpu
Architecture:          i686
CPU op-mode(s):        32-bit, 64-bit
Byte Order:            Little Endian
CPU(s):                2
On-line CPU(s) list:   0,1
Thread(s) per core:    1
Core(s) per socket:    2
CPU socket(s):         1
Vendor ID:             GenuineIntel
CPU family:            6
Model:                 15
Stepping:              2
CPU MHz:               1203.000 <------------||||||||||||
BogoMIPS:              4000.02
L1d cache:             32K
L1i cache:             32K
L2 cache:              2048K

그리고

root:~$ cat /proc/cpuinfo 
processor   : 0
vendor_id   : GenuineIntel
cpu family  : 6
model       : 15
model name  : Intel(R) Core(TM)2 CPU          4400  @ 2.00GHz
stepping    : 2
cpu MHz     : 2003.000 <------------||||||||||||
cache size  : 2048 KB
physical id : 0
siblings    : 2
core id     : 0
cpu cores   : 2
apicid      : 0
initial apicid  : 0
fdiv_bug    : no
hlt_bug     : no
f00f_bug    : no
coma_bug    : no
fpu     : yes
fpu_exception   : yes
cpuid level : 10
wp      : yes
flags       : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe nx lm constant_tsc arch_perfmon pebs bts aperfmperf pni dtes64 monitor ds_cpl est tm2 ssse3 cx16 xtpr pdcm lahf_lm dts
bogomips    : 3999.96
clflush size    : 64
cache_alignment : 64
address sizes   : 36 bits physical, 48 bits virtual
power management:

processor   : 1
vendor_id   : GenuineIntel
cpu family  : 6
model       : 15
model name  : Intel(R) Core(TM)2 CPU          4400  @ 2.00GHz
stepping    : 2
cpu MHz     : 1203.000 <------------||||||||||||
cache size  : 2048 KB
physical id : 0
siblings    : 2
core id     : 1
cpu cores   : 2
apicid      : 1
initial apicid  : 1
fdiv_bug    : no
hlt_bug     : no
f00f_bug    : no
coma_bug    : no
fpu     : yes
fpu_exception   : yes
cpuid level : 10
wp      : yes
flags       : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe nx lm constant_tsc arch_perfmon pebs bts aperfmperf pni dtes64 monitor ds_cpl est tm2 ssse3 cx16 xtpr pdcm lahf_lm dts
bogomips    : 4000.02
clflush size    : 64
cache_alignment : 64
address sizes   : 36 bits physical, 48 bits virtual
power management:

명령의 첫 번째 프로세서가 어떻게 cat /proc/cpuinfo말하는지 확인하세요.2003MHz그리고 두 번째1203MHz.

이게 정상인가요?

또한 첫 번째 항목이 항상 2003MHz를 표시하는 것은 아니며 때로는 둘 다 1203MHz를 표시하는 경우도 있습니다. 우분투 11.10을 사용하고 있습니다.

xsensors 명령은 프로세서가 45C ~ 55C에서 실행된다는 것을 보여줍니다(여기는 여름입니다).

답변1

예, 이는 정상입니다. Linux는 에너지를 보존하기 위해 클록 주파수 또는 전압을 변경할 수 있습니다. 현재 주파수를 보려면 다음을 살펴보세요. cpufreq-info

답변2

예, 이는 정상입니다.

최신 프로세서는 전력을 절약하고 프로세서를 시원하게 유지하기 위해 스스로 "언더클럭"할 수 있습니다. 프로세서는 CPU 부하에 따라 초당 여러 번 클럭 속도를 변경할 수 있으므로 사용한 방법 중 하나 또는 둘 다에서 속도를 반복적으로 확인하면 시간에 따라 다른 판독값이 제공될 수 있습니다.

2GHz 판독값이 현재 "동적" 클럭 속도가 아니라 프로세서 자체에서 보고한 최대 속도일 수도 있습니다.

관련 정보