web-dev-qa-db-ja.com

クアッドコアを使用しますが、 `/ proc / cpuinfo`に1つのCPUエントリしかありませんか?コンピューターでSMPが実行されていますか?

システムをアップグレードし、Ubuntuをクリーンインストールしました(先週CDからOneiric Ocelotをインストールしましたが、昨日は12.04 LTSにアップグレードしました)。 i7 920(ハイパースレッディングを備えたクアッドコア)があるため、8つのプロセッサが表示されるはずですが、システムモニタのグラフには1つしか表示されません。

cat /proc/cpuinfoは以下を返します。

processor   : 0
vendor_id   : GenuineIntel
cpu family  : 6
model       : 26
model name  : Intel(R) Core(TM) i7 CPU         920  @ 2.67GHz
stepping    : 4
microcode   : 0x10
cpu MHz     : 2672.633
cache size  : 8192 KB
physical id : 0
siblings    : 1
core id     : 0
cpu cores   : 1
apicid      : 0
initial apicid  : 0
fpu     : yes
fpu_exception   : yes
cpuid level : 11
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 rep_good nopl xtopology nonstop_tsc aperfmperf pni dtes64 monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr pdcm sse4_1 sse4_2 popcnt lahf_lm ida dts tpr_shadow vnmi flexpriority ept vpid
bogomips    : 5345.26
clflush size    : 64
cache_alignment : 64
address sizes   : 36 bits physical, 48 bits virtual
power management:

SMPが動作する以前のインストールの記憶から、/proc/cpuinfo--プロセッサごとに1つのエントリが複数あるはずです。私は1つしか見えません。

私が最初に考えたのは、非SMPカーネルがインストールされていることです。ただし、uname -aは以下を返します。

Linux compname 3.2.0-24-generic #37-Ubuntu SMP Wed Apr 25 08:43:22 UTC 2012 x86_64 x86_64 x86_64 GNU/Linux

使用可能なすべてのコアを使用していますか?そうでない場合、SMPカーネルを実行しているように見えるのに、何が原因ですか?

ありがとう!

9
Ari B. Friedman

BIOSでACPI機能を有効にします。これをオフにすると、システムは1 CPUを使用します。

7
Rinzwind