Linux

在“處理器類型和功能”下選擇哪個“處理器系列”?

  • October 30, 2012

我最近為我的Intel(R) Pentium(R) Dual CPU T3400 @ 2.16GHz編譯了一個最小核心,並在“處理器類型和功能 > 處理器系列”下選擇了CONFIG_MCORE2 (Core 2/newer Xeon)

我不知道這是否相關,但我的筆記型電腦有2GB的 RAM,而生成的核心在編譯時將我的 RAM 限制為只有800MB

用Google搜尋我的 CPU 並沒有帶來任何有用的東西!

processor   : 0
vendor_id   : GenuineIntel
cpu family  : 6
model       : 15
model name  : Intel(R) Pentium(R) Dual  CPU  T3400  @ 2.16GHz
stepping    : 13
microcode   : 0xa3
cpu MHz     : 2166.000
cache size  : 1024 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 sep 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 dtherm
bogomips    : 4322.39
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) Pentium(R) Dual  CPU  T3400  @ 2.16GHz
stepping    : 13
microcode   : 0xa3
cpu MHz     : 2166.000
cache size  : 1024 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 sep 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 dtherm
bogomips    : 4322.39
clflush size    : 64
cache_alignment : 64
address sizes   : 36 bits physical, 48 bits virtual
power management:

看,您的 CPU 系列cpu family : 6與以下描述相符CONFIG_MCORE2

Newer ones have 6 and older ones 15

這是選擇的正確配置。

還有你的記憶體問題,當你禁用 HIGHMEM 時,你的核心只能使用 896M 記憶體空間。

引用自:https://unix.stackexchange.com/questions/53282