在 Linux 中查找我的 CPU 的英特尔处理器编号

在 Linux 中查找我的 CPU 的英特尔处理器编号

如何找出英特尔处理器编号适合我的 Linux 上的 CPU 型号吗?

我从一家网络托管公司购买了一台服务器,但我不知道它使用的是哪种 CPU 型号。我只知道它是 Pentium D,双核。但型号可以是以下之一:805/820/830/840/915/925/935/945/920/930/940/950/960/955/965

但是 /proc/cpuinfo 显示型号为 '6' ,那么我如何找出真正的 CPU 型号?因为市场上没有 Pentium D 型号 6。

z3 ~ # cat /proc/cpuinfo 
processor   : 0
vendor_id   : GenuineIntel
cpu family  : 15
model       : 6
model name  : Intel(R) Pentium(R) D CPU 3.00GHz
stepping    : 4
microcode   : 0x4
cpu MHz     : 2997.084
cache size  : 2048 KB
physical id : 0
siblings    : 2
core id     : 0
cpu cores   : 2
apicid      : 0
initial apicid  : 0
fpu     : yes
fpu_exception   : yes
cpuid level : 6
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 lm constant_tsc pebs bts  nopl pni dtes64 monitor ds_cpl est cid cx16 xtpr pdcm lahf_lm
bogomips    : 5994.16
clflush size    : 64
cache_alignment : 128
address sizes   : 36 bits physical, 48 bits virtual
power management:

答案1

型号或 cpu_model 是一个整数,它与供应商有关,表示其 cpu_family 的版本。型号 6 指的是 9xx 系列。因此,如果我们查看您的时钟速度,它应该是 925 或 930。

答案2

在大多数情况下,您使用的方法应该显示模型名称,我的说法是:

Intel(R) Core(TM)2 Duo CPU P8400 @ 2.26GHz对于我的笔记本电脑。

甚至我的 EC2 实例也报告了一个模型: model name : Intel(R) Xeon(R) CPU E5430 @ 2.66GHz

其他检查方法:

cat /var/log/dmesg | grep -i 'processor'

我得到如下一行:

[ 0.067571] CPU0: Intel(R) Core(TM)2 Duo CPU P8400 @ 2.26GHz stepping 0a

dmidecode -t 4您还可以检查或的输出lshw -class cpu'

答案3

你不能 100% 确定你的 CPU(除非你有物理访问权限),但根据维基百科您的 CPU 如下:

PIn Intel's "Family/Model/Stepping" scheme, Cedar Mill Celeron Ds and Pentium 4s
are family 15, model 6, and their Intel product code is 80552.

相关内容