<返回更多

linux之lscpu命令

2021-09-22    入门小站
加入收藏

lscpu 命令显示有关 CPU 架构的信息

lscpu 命令安装:

-bash: lscpu: command not found
 
#Ubuntu
apt-get install util-linux

#centos
yum install util-linux
 
#Fedora
dnf install util-linux
 
#OS X
brew install util-linux

#Docker
docker run cmd.cat/lscpu lscpu

lscpu 命令补充说明:

lscpu 命令 是显示有关 CPU 架构的信息。。

lscpu 命令语法:

lscpu [-a|-b|-c|-J] [-x] [-y] [-s directory] [-e[=list]|-p[=list]]
lscpu -h|-V

lscpu 命令选项:

-a, --all               打印在线和离线CPU(默认为-e)
-b, --online            仅打印在线CPU(-p的默认值)
-c, --offline           打印离线CPU
-e, --extended[=<list>] 打印出一个扩展的可读格式
-p, --parse[=<list>]    打印出可解析的格式
-s, --sysroot <dir>     将指定的目录用作系统根目录
-x, --hex               打印十六进制掩码,而不是CPU列表
-h, --help     显示此帮助并退出
-V, --version  输出版本信息并退出

lscpu 命令参数:

可用列:
           CPU  逻辑CPU编号
          CORE  逻辑核心号码
        SOCKET  逻辑套接字号
          NODE  逻辑NUMA节点号
          BOOK  逻辑书号
         CACHE  显示了如何在CPU之间共享高速缓存
  POLARIZATION  虚拟硬件上的CPU调度模式
       ADDRESS  CPU的物理地址
    CONFIGURED  显示管理程序是否分配了CPU
        ONLINE  显示Linux是否正在使用CPU

lscpu 命令实例:

直接执行 lscpu:

> lscpu
 
Architecture:          x86_64
CPU op-mode(s):        32-bit, 64-bit
Byte Order:            Little Endian
CPU(s):                8
On-line CPU(s) list:   0-7
Thread(s) per core:    2
Core(s) per socket:    4
Socket(s):             1
NUMA node(s):          1
Vendor ID:             GenuineIntel
CPU family:            6
Model:                 85
Model name:            Intel(R) Xeon(R) Gold 6148 CPU @ 2.40GHz
Stepping:              4
CPU MHz:               2394.374
BogoMIPS:              4788.74
Hypervisor vendor:     KVM
Virtualization type:   full
L1d cache:             32K
L1i cache:             32K
L2 cache:              4096K
L3 cache:              16384K
NUMA node0 CPU(s):     0-7
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 arch_perfmon rep_good nopl xtopology eagerfpu 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 arat 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

显示格式

声明:本站部分内容来自互联网,如有版权侵犯或其他问题请与我们联系,我们将立即删除或处理。
▍相关推荐
更多资讯 >>>