ICode9

精准搜索请尝试: 精确搜索
首页 > 系统相关> 文章详细

linux系统中查看逻辑cpu个数、物理cpu个数、每个cpu的核心数、cpu型号

2021-07-09 20:03:15  阅读:400  来源: 互联网

标签:个数 cpu centos79 linux test root id physical


 

1、逻辑cpu个数(线程数)

[root@centos79 test]# cat /proc/cpuinfo | grep "processor"
processor       : 0
processor       : 1
processor       : 2
processor       : 3
[root@centos79 test]# cat /proc/cpuinfo | grep "processor" | wc -l
4

 

2、物理cpu个数

[root@centos79 test]# cat /proc/cpuinfo | grep "physical id"
physical id     : 0
physical id     : 0
physical id     : 1
physical id     : 1
[root@centos79 test]# cat /proc/cpuinfo | grep "physical id" | sort | uniq -c
      2 physical id     : 0
      2 physical id     : 1
[root@centos79 test]# cat /proc/cpuinfo | grep "physical id" | sort | uniq -c | wc -l
2

 

3、查看每个cpu核心数

[root@centos79 test]# cat /proc/cpuinfo | grep "cpu cores"
cpu cores       : 2
cpu cores       : 2
cpu cores       : 2
cpu cores       : 2
[root@centos79 test]# cat /proc/cpuinfo | grep "cpu cores" | uniq | awk -F: '{print $2}'
 2

 

4、查看cpu型号

[root@centos79 test]# dmidecode -s processor-version | uniq
AMD Ryzen 5 3600X 6-Core Processor

 

 

5、汇总

[root@centos79 test]# lscpu
Architecture:          x86_64
CPU op-mode(s):        32-bit, 64-bit
Byte Order:            Little Endian
CPU(s):                4     ## 逻辑cpu个数
On-line CPU(s) list:   0-3
Thread(s) per core:    1
Core(s) per socket:    2     ## 每个cpu核心数
Socket(s):             2     ## 物理cpu个数
NUMA node(s):          1
Vendor ID:             AuthenticAMD
CPU family:            23
Model:                 113
Model name:            AMD Ryzen 5 3600X 6-Core Processor   ## cpu型号
Stepping:              0
CPU MHz:               3800.009
BogoMIPS:              7600.01
Virtualization:        AMD-V
Hypervisor vendor:     VMware
Virtualization type:   full
L1d cache:             32K
L1i cache:             32K
L2 cache:              512K
L3 cache:              32768K
NUMA node0 CPU(s):     0-3
Flags:                 fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc art rep_good nopl tsc_reliable nonstop_tsc extd_apicid eagerfpu pni pclmulqdq ssse3 fma cx16 sse4_1 sse4_2 x2apic movbe popcnt aes xsave avx f16c rdrand hypervisor lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw perfctr_core retpoline_amd ssbd ibpb vmmcall fsgsbase bmi1 avx2 smep bmi2 rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec clzero arat npt svm_lock nrip_save vmcb_clean flushbyasid decodeassists overflow_recov succor

 

标签:个数,cpu,centos79,linux,test,root,id,physical
来源: https://www.cnblogs.com/liujiaxin2018/p/14992244.html

本站声明: 1. iCode9 技术分享网(下文简称本站)提供的所有内容,仅供技术学习、探讨和分享;
2. 关于本站的所有留言、评论、转载及引用,纯属内容发起人的个人观点,与本站观点和立场无关;
3. 关于本站的所有言论和文字,纯属内容发起人的个人观点,与本站观点和立场无关;
4. 本站文章均是网友提供,不完全保证技术分享内容的完整性、准确性、时效性、风险性和版权归属;如您发现该文章侵犯了您的权益,可联系我们第一时间进行删除;
5. 本站为非盈利性的个人网站,所有内容不会用来进行牟利,也不会利用任何形式的广告来间接获益,纯粹是为了广大技术爱好者提供技术内容和技术思想的分享性交流网站。

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有