内核未检测到多核 cpu

内核未检测到多核 cpu

内核版本3.3.4-5.fc17.x86_64

CPU信息:

sashan@dhcp-au-122 ~  $ cat /proc/cpuinfo 
processor   : 0
vendor_id   : GenuineIntel
cpu family  : 6
model       : 42
model name  : Intel(R) Core(TM) i7-2640M CPU @ 2.80GHz
stepping    : 7
microcode   : 0x28
cpu MHz     : 2793.577
cache size  : 4096 KB
physical id : 0
siblings    : 1
core id     : 0
cpu cores   : 1
apicid      : 0
initial apicid  : 0
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 ht tm pbe syscall nx rdtscp lm constant_tsc up arch_perfmon pebs bts nopl xtopology nonstop_tsc aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx lahf_lm ida arat epb xsaveopt pln pts dts tpr_shadow vnmi flexpriority ept vpid
bogomips    : 5587.15
clflush size    : 64
cache_alignment : 64
address sizes   : 36 bits physical, 48 bits virtual
power management:

请注意,它显示 1 个核心,并且它是一个 i7,有 2 个(http://ark.intel.com/products/53464/Intel-Core-i7-2640M-Processor-4M-Cache-up-to-3_50-GHz

答案1

为了使用多核,内核需要编译为支持SMP。 Fedora 内核应该已经有它了。您可以通过以下方式进行验证:

zcat /proc/config.gz | grep 'CONFIG_SMP'

来自内核配置的帮助文本:

这使得能够支持具有多个 CPU 的系统。如果你在这里选择N,内核将在单处理器和多处理器机器上运行,但只会使用多处理器机器的一个CPU。如果您在这里选 Y,则内核将在许多(但不是全部)单处理器计算机上运行。在单处理器机器上,如果您在这里选择“N”,内核将运行得更快。

答案2

我的 grub 引导配置在内核引导参数列表中有 acpi=off 。将其更改为 acpi=on。最初,当使用 live cd 安装此版本的 Linux 时,我必须关闭 acpi,因为它无法从默认的 live cd 内核启动参数列表启动这台笔记本电脑。

相关内容