Linux下查看CPU信息的方法(linux下查cpu)
Linux下查看CPU信息的方法
在Linux中,CPU信息对于系统监控和优化非常重要。了解CPU的基本信息可以优化系统的性能,解决系统瓶颈问题。本文介绍了Linux系统下查看CPU信息的方法。
1. 使用lscpu命令
lscpu命令可以查看系统的CPU信息,包括CPU个数、架构、速度、缓存、Byte Order等等。在终端中输入以下命令:
“`shell
$ lscpu
输出如下:
Architecture: x86_64
CPU op-mode(s): 32-bit, 64-bit
Byte Order: Little Endian
CPU(s): 4
On-line CPU(s) list: 0-3
Thread(s) per core: 2
Core(s) per socket: 2
Socket(s): 1
NUMA node(s): 1
Vendor ID: GenuineIntel
CPU family: 6
Model: 61
Model name: Intel(R) Core(TM) i5-5250U CPU @ 1.60GHz
Stepping: 4
CPU MHz: 550.019
CPU max MHz: 2700.0000
CPU min MHz: 500.0000
BogoMIPS: 4988.52
Virtualization: VT-x
L1d cache: 32K
L1i cache: 32K
L2 cache: 256K
L3 cache: 3072K
NUMA node0 CPU(s): 0-3
2. 使用/proc/cpuinfo文件
Linux系统还有一个特殊的文件系统/proc,里面包含了很多关于系统信息的文件。/proc/cpuinfo文件包含了CPU的详细信息,包括CPU型号、频率、缓存等等。可以在终端中输入以下命令:
```shell$ cat /proc/cpuinfo
输出如下:
processor : 0
vendor_id : GenuineIntelcpu family : 6
model : 61model name : Intel(R) Core(TM) i5-5250U CPU @ 1.60GHz
stepping : 4microcode : 0x28
cpu MHz : 500.000cache size : 32 KB
physical id : 0siblings : 4
core id : 0cpu cores : 2
apicid : 0initial apicid : 0
fpu : yesfpu_exception : yes
cpuid level : 22wp : 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 art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_tim er aes xsave avx f16c rdrand lahf_lm abm ida arat epb xsaveopt pln pts dtherm tpr_shadow vnmi flexpriority ept vpid fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid rdseed adx smap xsavec xgetbv1 xsaves ibpb ibrs stibp dtherm_ther malbugs :
bogomips : 4992.22clflush size : 64
cache_alignment : 64address sizes : 39 bits physical, 48 bits virtual
power management:
3. 使用top命令
top命令用于查看系统的实时性能情况,包括CPU、内存、IO等等。在top界面中按下1键可以查看系统的CPU信息,包括CPU核数、占用率、进程数等等。
在终端中输入以下命令:
“`shell
$ top
按下1键,输出如下:
top – 09:56:58 up 3 days, 22:19, 2 users, load average: 0.71, 0.66, 0.62
Tasks: 229 total, 1 running, 228 sleeping, 0 stopped, 0 zombie
Cpu0 : 36.9%us, 1.0%sy, 0.0%ni, 62.0%id, 0.0%wa, 0.0%hi, 0.1%si, 0.0%st
Cpu1 : 0.3%us, 0.3%sy, 0.0%ni, 99.3%id, 0.3%wa, 0.0%hi, 0.0%si, 0.0%st
Cpu2 : 8.0%us, 2.1%sy, 0.0%ni, 89.9%id, 0.0%wa, 0.0%hi, 0.0%si, 0.0%st
Cpu3 : 5.7%us, 0.7%sy, 0.0%ni, 93.6%id, 0.0%wa, 0.0%hi, 0.0%si, 0.0%st
Mem: 8086764k total, 2288432k used, 5798332k free, 61068k buffers
Swap: 8290300k total, 0k used, 8290300k free, 1158116k cached
PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND
2128 root 20 0 0 0 0 S 6.2 0.0 220:59.39 kworker/3:1
339 root 20 0 0 0 0 S 4.2 0.0 64:28.57 jbd2/sda1-8
1 root 20 0 4144 1312 688 S 0.0 0.0 0:04.46 init
2 root 20 0 0 0 0 S 0.0 0.0 0:00.00 kthreadd
3 root RT 0 0 0 0 S 0.0 0.0 0:00.37 migration/0
4. 使用mpstat命令
mpstat命令用于监测Linux系统的CPU负载情况,可用于查看每个CPU的利用率和系统平均利用率。在终端中输入以下命令:
```shell$ mpstat
输出如下:
Linux 4.15.0-1095-aws (ip-172-31-48-140) 06/30/2021 _x86_64_ (4 CPU)
08:45:22 PM CPU %usr %nice %sys %iowait %irq %soft %steal %guest %gnice %idle08:45:22 PM all 6.90 0.00 1.75 1.43 0.00 0.05 0.00 0.00 0.00 90.87
总结
本文介绍了Linux系统下查看CPU信息的四种方法:使用lscpu命令、/proc/cpuinfo文件、top命令、mpstat命令。了解CPU的基本信息可以优化系统的性能,解决系统瓶颈问题。