CentOS查看CPU核心数及cpuinfo解析

a 夏天 提交于 2020-11-09 17:13:02

物理 CPU 核数

$ cat /proc/cpuinfo | grep "cpu cores"| uniq

cpu cores	: 4

$ cat /proc/cpuinfo | grep "cpu cores"| wc -l
4

逻辑 CPU 核数

$ cat /proc/cpuinfo| grep "processor"| uniq

processor	: 0
processor	: 1
processor	: 2
processor	: 3
processor	: 4
processor	: 5
processor	: 6
processor	: 7

$ cat /proc/cpuinfo| grep "processor"| wc -l
8

/proc/cpuinfo 解析

$ cat /proc/cpuinfo

输出结果

processor	: 0 
vendor_id	: GenuineIntel 
cpu family	: 6 
model		: 85
model name	: Intel(R) Xeon(R) Platinum 8124M CPU @ 3.00GHz
stepping	: 4
microcode	: 0x2006906
cpu MHz		: 3398.864
cache size	: 25344 KB
physical id	: 0
siblings	: 2
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 mmx fxsr sse sse2 ss ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc cpuid aperfmperf tsc_known_freq pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand hypervisor lahf_lm abm 3dnowprefetch invpcid_single pti fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm mpx avx512f avx512dq rdseed adx smap clflushopt clwb avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves ida arat pku ospke
bugs		: cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs taa itlb_multihit
bogomips	: 6000.00
clflush size	: 64
cache_alignment	: 64
address sizes	: 46 bits physical, 48 bits virtual
power management:

解释(参考 https://access.redhat.com/documentation/en-us/red_hat_enterprise_linux/4/html/reference_guide/s2-proc-cpuinfo)

  • processor - 处理器的一个标识号。比如机器为一核,则为0,为多核,则为 0,1,2...
  • cpu family - 标识处理器的类型。对于基于Intel的系统,将数字放在“86”前面以确定该值。这对于识别旧系统(例如586、486或386)特别有用。由于为这些特定体系结构中的每种体系结构编译了一些RPM软件包,因此该值还可以帮助用户确定要安装的软件包
  • model name - 显示处理器的通用名称,包括其项目名称
  • cpu MHz - 以兆赫为单位显示处理器的精确速度,精确到千分之一位
  • cache size - 2级内存缓存容量
  • siblings - 超线程机器在同一物理CPU上的同级CPU的数量
  • flags - 定义有关处理器的多种不同质量,例如浮点单元(FPU)的存在以及处理MMX指令的能力
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!