Linux
核心未檢測到多核 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-赫茲)
我的 grub 引導配置在核心引導參數列表中有 acpi=off。將此更改為 acpi=on。我最初在使用 live cd 安裝此版本的 Linux 時必須關閉 acpi,因為它不會從預設的 live cd 核心啟動參數列表在這台筆記型電腦上啟動。
為了使用多個核心,核心需要在編譯時支持 SMP。Fedora 核心應該已經有了它。您可以通過以下方式進行驗證:
zcat /proc/config.gz | grep 'CONFIG_SMP'
從核心配置的幫助文本中:
這使得支持具有多個 CPU 的系統成為可能。如果你在這裡說 N,核心將在單處理器和多處理器機器上執行,但只會使用多處理器機器的一個 CPU。如果您在此處選擇 Y,則核心將在許多(但不是全部)單處理器機器上執行。在單處理器機器上,如果你在這裡說 N,核心會執行得更快。