Linux – find Intel Processor Number for the cpu in linux

central-processing-unitlinux

How to find out the Intel Processor Number for my CPU model on linux ?

I bought a server from a webhosting company and I don't know which CPU model it has. I only know it is a Pentium D , dual core. But the model can be one of the following: 805/820/830/840/915/925/935/945/920/930/940/950/960/955/965

But the /proc/cpuinfo shows model as '6' , so how do I find out the real cpu model? Because there is no Pentium D model 6 on the market.

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:

Best Answer

Model or cpu_model is An integer that is vendor dependent and indicates their version of the cpu_family. Model 6 refers to the 9xx series. So if we look at your clock speed it should be either a 925 or a 930.

Related Topic