linux

Linux CPUInfo 包含哪些内容

小樊
42
2025-05-06 10:04:34
栏目: 智能运维

Linux的lscpu命令用于显示CPU架构信息,包括以下内容:

基本信息

  1. Architecture:CPU的架构(如x86_64)。
  2. CPU op-mode(s):支持的指令集模式(如32-bit, 64-bit)。
  3. Byte Order:字节序(大端或小端)。
  4. CPU(s):逻辑CPU的数量。
  5. On-line CPU(s) list:在线CPU的列表。
  6. Thread(s) per core:每个核心的线程数。
  7. Core(s) per socket:每个插槽的核心数。
  8. Socket(s):物理插槽的数量。

CPU特性

  1. Vendor ID:CPU制造商的ID。
  2. CPU family:CPU家族号。
  3. Model:CPU型号。
  4. Stepping:CPU步进号。
  5. CPU MHz:当前CPU的频率(以MHz为单位)。
  6. BogoMIPS:每秒百万条指令数,用于衡量CPU性能。
  7. Virtualization:虚拟化支持情况(如VT-x, AMD-V)。
  8. L1d cache:一级数据缓存大小。
  9. L1i cache:一级指令缓存大小。
  10. L2 cache:二级缓存大小。
  11. L3 cache:三级缓存大小。

其他特性

  1. NUMA node(s):非统一内存访问节点的数量。
  2. Flags:CPU支持的特性标志列表。

示例输出

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:                 158
Stepping:              9
CPU MHz:               2300.000
BogoMIPS:              4600.00
Virtualization:        VT-x
L1d cache:             32K
L1i cache:             32K
L2 cache:              256K
L3 cache:              8192K
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 pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid fault epb invpcid_single pti ssbd ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid mpx rdseed adx smap clflushopt xsaveopt xsavec xgetbv1 xsaves dtherm ida arat pln pts hwp hwp_notify hwp_act_window hwp_epp md_clear flush_l1d

使用方法

你可以通过以下命令来查看详细的CPU信息:

lscpu

这个命令会输出上述所有信息,帮助你了解系统的CPU配置和特性。

0
看了该问题的人还看了