我的处理器没有被检测到英特尔酷睿 2 双核

我的处理器没有被检测到英特尔酷睿 2 双核

我的处理器没有被检测到英特尔酷睿 2 双核

当我输入

$uname-m-p

我明白了

i686 未知

我有 Ubuntu 10.10 上网本 remix

但 cat /proc/cpuinfo 给出了两个处理器的正确识别,如下所示

processor   : 0
vendor_id   : GenuineIntel
cpu family  : 6
model       : 15
model name  : Intel(R) Core(TM)2 CPU         T5600  @ 1.83GHz
stepping    : 6
cpu MHz     : 1826.000
cache size  : 2048 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 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 vmx est tm2 ssse3 cx16 xtpr pdcm lahf_lm dts tpr_shadow
bogomips    : 3657.99
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) Core(TM)2 CPU         T5600  @ 1.83GHz
stepping    : 6
cpu MHz     : 1826.000
cache size  : 2048 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 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 vmx est tm2 ssse3 cx16 xtpr pdcm lahf_lm dts tpr_shadow
bogomips    : 3657.53
clflush size    : 64
cache_alignment : 64
address sizes   : 36 bits physical, 48 bits virtual
power management:

问题在于使用多个核心的程序,如virtualbox和bitcoin,它们拒绝使用多个核心

有什么问题吗或者我能做些什么?

我的安装来自 USB 上的实时 USB iso

答案1

据我所知,您的系统一切正常。我尝试了几个系统(我的 U2300 笔记本电脑、Core2 服务器和 Pentium 4 服务器),uname 在所有系统中都返回未知,但在 /proc/cpuinfo 中都正确识别并且都使用了完整核心。

如果您希望 VirtualBox 使用多个核心,则需要在虚拟机配置屏幕中的系统->处理器选项卡中授予虚拟机对这些核心的访问权限。

在此处输入图片描述

答案2

uname 不会检测您使用的是哪种处理器;它只是打印出您的内核是为哪个目标构建的。i686 目标表示在英特尔 686 及更高兼容处理器上运行的 32 位内核。

相关内容