如何知道Linux中的处理器系列?

如何知道Linux中的处理器系列?
Processor family
  1. Opteron/Athlon64/Hammer/K8 (MK8)
  2. Intel P4 / older Netburst based Xeon (MPSC)
  3. Core 2/newer Xeon (MCORE2) (NEW)
  4. Intel Atom (MATOM) (NEW)
> 5. Generic-x86-64 (GENERIC_CPU)

我正在编译Linux内核,我怎么知道该选择哪一个?

processor   : 0
vendor_id   : GenuineIntel
cpu family  : 6
model       : 23
model name  : Intel(R) Core(TM)2 Duo CPU     E7500  @ 2.93GHz
stepping    : 10
cpu MHz     : 2926.030
cache size  : 3072 KB
fpu     : yes
fpu_exception   : yes
cpuid level : 13
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 syscall nx lm constant_tsc up pni ssse3 cx16 sse4_1 lahf_lm
bogomips    : 5852.06
clflush size    : 64
cache_alignment : 64
address sizes   : 40 bits physical, 48 bits virtual
power management:

答案1

cat /proc/cpuinfo

您将会看到处理器所拥有的东西。

就您而言,选择 3。

来自内核帮助关于 MCORE2

为 Intel Core 2 和更新的 Core 2 Xeon(Xeon 51xx 和 53xx)CPU 选择此项。您可以通过 /proc/cpuinfo 中的 CPU 系列区分较新和较旧的 Xeon。较新的有 6 个,较旧的有 15 个(不是拼写错误)

相关内容