如何查看linux系统配置


本文摘自PHP中文网,作者尚,侵删。

查看linux系统配置的方法:

CPU

1. lscpu:显示cpu架构信息

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

[xxx@localhost ~]$ 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:    1          #每个核心支持的线程数量。1表示只支持一个线程,即不支持超线程

Core(s) per socket:    1          #每个处理器的核心数量

Socket(s):             4          #处理器数量

NUMA node(s):          1

Vendor ID:             GenuineIntel

CPU family:            6

Model:                 63

Stepping:              0

CPU MHz:               2599.998

BogoMIPS:              5199.99

Hypervisor vendor:     VMware       #管理程序供应商

Virtualization type:   full

L1d cache:             32K

L1i cache:             32K

L2 cache:              256K

L3 cache:              30720K

NUMA node0 CPU(s):     0-3

总处理器核心数量=处理器数量*每个处理器的核心数量*每个核心支持的线程数量。即:CPU(s) = Socket(s) * Core(s) * Thread(s)。

2、cat /proc/cpuinfo:查看CPU详细信息

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

37

38

39

40

41

42

43

44

45

46

47

48

49

50

51

52

53

54

55

56

57

58

59

60

61

62

63

64

65

66

67

68

69

70

71

72

73

74

75

76

[xxx@localhost ~]$ cat /proc/cpuinfo

processor       : 0

vendor_id       : GenuineIntel

cpu family      : 6

model           : 63

model name      : Intel(R) Xeon(R) CPU E5-2690 v3 @ 2.60GHz

stepping        : 0

cpu MHz         : 2599.998

cache size      : 30720 KB

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 dts mmx fxsr sse sse2 ss syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts xtopology tsc_reliable nonstop_tsc aperfmperf unfair_spinlock pni pclmulqdq ssse3 fma cx16 sse4_1 sse4_2 movbe popcnt aes xsave avx hypervisor lahf_lm ida arat epb pln pts dts

bogomips        : 5199.99

clflush size    : 64

cache_alignment : 64

address sizes   : 40 bits physical, 48 bits virtual

power management:

 

processor       : 1

vendor_id       : GenuineIntel

cpu family      : 6

model           : 63

model name      : Intel(R) Xeon(R) CPU E5-2690 v3 @ 2.60GHz

stepping        : 0

cpu MHz         : 2599.998

cache size      : 30720 KB

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 dts mmx fxsr sse sse2 ss syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts xtopology tsc_reliable nonstop_tsc aperfmperf unfair_spinlock pni pclmulqdq ssse3 fma cx16 sse4_1 sse4_2 movbe popcnt aes xsave avx hypervisor lahf_lm ida arat epb pln pts dts

bogomips        : 5199.99

clflush size    : 64

cache_alignment : 64

address sizes   : 40 bits physical, 48 bits virtual

power management:

 

processor       : 2

vendor_id       : GenuineIntel

cpu family      : 6

model           : 63

model name      : Intel(R) Xeon(R) CPU E5-2690 v3 @ 2.60GHz

stepping        : 0

cpu MHz         : 2599.998

cache size      : 30720 KB

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 dts mmx fxsr sse sse2 ss syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts xtopology tsc_reliable nonstop_tsc aperfmperf unfair_spinlock pni pclmulqdq ssse3 fma cx16 sse4_1 sse4_2 movbe popcnt aes xsave avx hypervisor lahf_lm ida arat epb pln pts dts

bogomips        : 5199.99

clflush size    : 64

cache_alignment : 64

address sizes   : 40 bits physical, 48 bits virtual

power management:

 

processor       : 3

vendor_id       : GenuineIntel

cpu family      : 6

model           : 63

model name      : Intel(R) Xeon(R) CPU E5-2690 v3 @ 2.60GHz

stepping        : 0

cpu MHz         : 2599.998

cache size      : 30720 KB

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 dts mmx fxsr sse sse2 ss syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts xtopology tsc_reliable nonstop_tsc aperfmperf unfair_spinlock pni pclmulqdq ssse3 fma cx16 sse4_1 sse4_2 movbe popcnt aes xsave avx hypervisor lahf_lm ida arat epb pln pts dts

bogomips        : 5199.99

clflush size    : 64

cache_alignment : 64

address sizes   : 40 bits physical, 48 bits virtual

power management:

这样输出的话,内容有些多,看起来会有些混乱。我们可以用几条命令来查看我们想要知道的信息:

1

2

3

4

5

6

7

8

9

10

11

12

13

14

# 查看物理CPU个数

cat /proc/cpuinfo | grep "physical id" | sort | uniq

 

# 查看每个物理CPU中core的个数(即核数)

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

 

# 查看每个物理CPU中线程的个数

cat /proc/cpuinfo | grep "siblings" | uniq

 

# 查看逻辑CPU的个数

cat /proc/cpuinfo| grep "processor"

 

# 查看CPU型号

cat /proc/cpuinfo | grep "model name" | uniq

内存

阅读剩余部分

相关阅读 >>

要学习Linux首先要学习什么

怎么看Linux系统版本信息

Linux <什么意思

Linux如何安装win7系统

Linux系统引导流程

Linux如何查看tomcat进程

如何将Linux系统更换成windows系统

Linux使用手册之安装clion和运行使用总结

Linux查看tomcat是否启动的方法

Linux系统中如何添加路由

更多相关阅读请进入《Linux》频道 >>



打赏

取消

感谢您的支持,我会继续努力的!

扫码支持
扫码打赏,您说多少就多少

打开支付宝扫一扫,即可进行扫码打赏哦

分享从这里开始,精彩与您同在

评论

管理员已关闭评论功能...