주제에서 알 수 있듯이 CPU를 올바르게 가져오려면 스테핑 코드가 필요합니다. Wikipedia에 따르면 비슷한 스테핑 코드가 있습니다.A0,A2,B0따라서 Linux(ubuntu 16.04)의 명령은 다음을 제공합니다.
# dmidecode -t 4 | grep Stepping | awk '{ printf $8": "$9"\n" }'
# Stepping: 2
# lscpu | grep Stepping
# Stepping: 2
# cpuid | grep stepping
# stepping id = 0x2 (2)
# cat /proc/cpuinfo | grep stepping
# stepping: 2
전체 출력: cat /proc/cpuinfo(코어 1개):
processor : 0
vendor_id : GenuineIntel
cpu family : 6
model : 44
model name : Intel(R) Xeon(R) CPU E5620 @ 2.40GHz
stepping : 2
microcode : 0x13
cpu MHz : 2400.208
cache size : 12288 KB
physical id : 0
siblings : 4
core id : 0
cpu cores : 4
apicid : 0
initial apicid : 0
fpu : yes
fpu_exception : yes
cpuid level : 11
wp : yes
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf pni dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 popcnt lahf_lm epb kaiser tpr_shadow vnmi flexpriority ept vpid dtherm ida arat
bugs :
bogomips : 4800.41
clflush size : 64
cache_alignment : 64
address sizes : 40 bits physical, 48 bits virtual
power management:
...
CPUID(일부):
...
family = Intel Pentium Pro/II/III/Celeron/Core/Core 2/Atom, AMD Athlon/Duron, Cyrix M2, VIA C3 (6)
...
(simple synth) = Intel Core i7-900 (Gulftown B1) / Core i7-980X (Gulftown B1) / Xeon Processor 3600 (Westmere-EP B1) / Xeon Processor 5600 (Westmere-EP B1), 32nm
...
dmidecode -t 4(일부):
...
Signature: Type 0, Family 6, Model 44, Stepping 2
...
인터넷의 일부 스크린샷CPU-Z프로그램:
인터넷의 일부 스크린샷CPU-G프로그램:
그래서 무엇입니까?0x2또는2? Wikipedia에 언급된 A0 또는 B1이 아닌 이유는 무엇입니까? 스테핑 번호 이전에 이 편지를 받는 방법은 무엇입니까?
감사합니다, V7
답변1
CPU의 정보만 사용하여 단계 번호를 단계 이름에 매핑할 수 있는 방법은 없습니다. Intel의 사양 업데이트를 확인하고 싶을 것입니다. 여기에는 다양한 CPU 개정판에서 수정된 정오표에 대한 설명이 포함되어 있으며 다양한 단계를 식별할 수 있는 식별 정보도 포함되어 있습니다.
예를 들어, E8500의 경우,사양 업데이트두 가지 개정판이 나열되어 있습니다. C0과 E0, C0은 프로세서 서명 10676h에 해당하고 E0은 프로세서 서명 1067Ah에 해당합니다(16페이지의 표 1 참조). 이 서명의 마지막 4비트는 /proc/cpuinfo
CPU-Z의 단계 필드에 제공된 단계 값과 동일합니다. lscpu
숫자 값과 단계 이름 사이에는 명확한 상관 관계가 없습니다(6은 E8500 단계 C0, A를 나타냄). E8500 단계 E0을 나타냅니다). CPU-Z와 같은 도구에는 이러한 모든 식별 정보가 포함되어 있으며 이를 사용하여 GUI에 단계 이름을 제공합니다.