如何查找包括虚拟在内的CPU内核数?


Answers:


180

您可以不算CPU

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

输出:

2

要检查内核数!

cat /proc/cpuinfo | grep 'core id'
core id         : 0
core id         : 1

要么

 $ nproc
 2

否则lscpu将显示所有输出:

lscpu

Architecture:          i686
CPU op-mode(s):        32-bit, 64-bit
Byte Order:            Little Endian
CPU(s):                2
On-line CPU(s) list:   0,1
Thread(s) per core:    1
Core(s) per socket:    2
Socket(s):             1
Vendor ID:             GenuineIntel
CPU family:            15
Model:                 4
Stepping:              7
CPU MHz:               2792.992
BogoMIPS:              5585.98
L1d cache:             16K
L2 cache:              1024K

6
grep可以计算带-c选项的匹配,而无需在中进行wc
Ruslan

1
即第一命令相当于grep -c processor /proc/cpuinfo
阿伦

nproc在脚本中也很有用,具体取决于可用内核的数量。例如make -j$(nproc)
Farway

+1(包括lscpu在您的答案中),这是迄今为止最容易使用的命令。
加布里埃尔·斯台普斯

如何检查特定用户?
makis

13

要添加到现有答案中,您可以通过查看/ proc / cpuinfo中的“兄弟”行来确定有关英特尔超线程的信息。下面的示例来自2插槽计算机。它显示了CPU有6个核心,但有12个“同级”。在Intel CPU上,这意味着启用了超线程,并且有6个物理内核。

processor       : 23
vendor_id       : GenuineIntel
cpu family      : 6
model           : 62
model name      : Intel(R) Xeon(R) CPU E5-2430 v2 @ 2.50GHz
stepping        : 4
microcode       : 0x428
cpu MHz         : 1599.707
cache size      : 15360 KB
physical id     : 1
siblings        : 12
core id         : 5
cpu cores       : 6
apicid          : 43
initial apicid  : 43
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 pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm ida arat xsaveopt pln pts dtherm tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms
bogomips        : 5005.20
clflush size    : 64
cache_alignment : 64
address sizes   : 46 bits physical, 48 bits virtual
power management:

dmidecode对确定Linux系统在什么硬件上运行也很有用。


7

/proc/cpuinfo包含我的计算机的所有CPU,包括虚拟机。您可以一点点数一下grep

grep -Pc '^processor\t' /proc/cpuinfo

5

假设您没有关闭内核/线程,此命令将回答您的问题:

getconf _NPROCESSORS_ONLN

这将显示这可以从核心的总数不同的内核在线人数..
heemayl

1
@heemayl就是为什么我像以前那样开始回答。
Ruslan

有道理..我忽略了这一点.. +1
heemayl

2

您还可以安装htop(的高级版本top),以显示所有内核。

sudo apt-get install htop

然后启动它: htop


1

类型:

 lscpu |grep 'CPU(s)'

您将获得其他几行内容:

CPU(s)                  4

根据您的CPU,您可以得到1,2 ...代替4,这就是您的CPU拥有的内核数。


这给出的是CPU的数量,而不是内核的数量。
kaushalpranav
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.