檢視CentOS伺服器的cpu、記憶體、作業系統版本資訊

weixin_34221276發表於2017-11-16

經常要檢視Linux伺服器的CPU、記憶體、作業系統版本等資訊,總結一下常用的命令

1.檢視CPU型號(32個邏輯CPU)

[root@nginx ~]# cat /proc/cpuinfo |grep "name" |cut -f2 -d: |uniq -c

     32  Intel(R) Xeon(R) CPU E5-4620 v2 @ 2.60GHz


2.檢視物理CPU個數(兩個16核CPU)


[root@nginx ~]# cat /proc/cpuinfo | grep "physical"| sort |uniq -c

     32 address sizes: 46 bits physical, 48 bits virtual

     16 physical id: 0

     16 physical id: 1


3.檢視CPU執行在多少位模式下面

[root@nginx ~]# getconf LONG_BIT

64


4.下面的結果大於0,說明支援64位作業系統


[root@nginx ~]# cat /proc/cpuinfo | grep flags | grep ' lm ' | wc -l

32


5.檢視系統實體記憶體的大小

[root@nginx ~]# free -m

             total       used       free     shared    buffers     cached

Mem:         32051      31806        244          0         58      30654

-/+ buffers/cache:       1093      30958

Swap:        15999          0      15999


6.檢視記憶體詳細資訊
[root@nginx ~]# cat /proc/cpuinfo


processor       : 0

vendor_id       : GenuineIntel

cpu family      : 6

model           : 62

model name      : Intel(R) Xeon(R) CPU E5-4620 v2 @ 2.60GHz

stepping        : 4

microcode       : 1064

cpu MHz         : 2600.065

cache size      : 20480 KB

physical id     : 0

siblings        : 16

core id         : 0

cpu cores       : 8

apicid          : 0

initial apicid  : 0

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 acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good xtopology nonstop_tsc aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm ida arat xsaveopt pln pts dts tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms

bogomips        : 5200.13

clflush size    : 64


7.檢視伺服器安裝的是哪個發行版本

[root@nginx ~]# cat /etc/redhat-release

CentOS release 6.6 (Final)


8.檢視OS的版本是64位的還是32位的

[root@nginx ~]# uname -r

2.6.32-504.el6.x86_64

[root@nginx ~]# uname -a

Linux nginx.yc.jzhnm.com 2.6.32-504.el6.x86_64 #1 SMP Wed Oct 15 04:27:16 UTC 2014 x86_64 x86_64 x86_64 GNU/Linux


9.檢視伺服器的硬體資訊


[root@nginx ~]# dmidecode |grep Vendor          #處理器廠商

Vendor: Dell Inc.

[root@nginx ~]# dmidecode |grep Product         #伺服器型號

Product Name: PowerEdge R820

Product Name: 0JC2W3

本文轉自    蝸牛遠途   51CTO部落格,原文連結:http://blog.51cto.com/ywliyq/1765787

相關文章