Ubuntu – Why is Ubuntu detecting only one processor core

cpuintelmulti-core

My processor is Intel P6100 which is a Dual Core processor. When I do

cat /proc/cpuinfo

this is what get

varun@varun-K52F:~$ cat /proc/cpuinfo
processor   : 0
vendor_id   : GenuineIntel
cpu family  : 6
model       : 37
model name  : Intel(R) Pentium(R) CPU        P6100  @ 2.00GHz
stepping    : 5
microcode   : 0x2
cpu MHz     : 1999.000
cache size  : 3072 KB
physical id : 0
siblings    : 1
core id     : 0
cpu cores   : 1
apicid      : 0
initial apicid  : 0
fdiv_bug    : no
hlt_bug     : no
f00f_bug    : no
coma_bug    : no
fpu     : yes
fpu_exception   : yes
cpuid level : 11
wp      : yes
flags       : fpu vme de pse tsc msr pae mce cx8 sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe nx rdtscp lm constant_tsc arch_perfmon pebs bts xtopology nonstop_tsc aperfmperf pni dtes64 monitor ds_cpl est tm2 ssse3 cx16 xtpr pdcm pcid popcnt lahf_lm arat dtherm
bogomips    : 3990.07
clflush size    : 64
cache_alignment : 64
address sizes   : 36 bits physical, 48 bits virtual
power management:

Why does it show only 1 core?

EDIT: Output of

cat /proc/cpuinfo | grep -i processor | wc -l

is also

1

`

Best Answer

  • The kernel option nolapic effectively disables the use of all but the first processor.
    • Instead of using nolapic, please try to specifically solve any issues you have, asking new questions if necessary :)
  • Additionally, to detect and use multiple cores on Ubuntu 12.04 32-bit, you need to be running the -generic-pae kernel. Please verify this with uname -r.
Related Question