檢視CentOS伺服器的cpu、記憶體、作業系統版本資訊
經常要檢視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
相關文章
- linux檢視cpu、記憶體、版本資訊Linux記憶體
- linux查詢作業系統資訊(CPU、記憶體、硬碟)Linux作業系統記憶體硬碟
- 寫個 Package:顯示伺服器的資訊(作業系統、CPU、記憶體、Web 伺服器等資訊)Package伺服器作業系統記憶體Web
- Linux下檢視記憶體,CPU資訊Linux記憶體
- [轉]HPUX 檢視系統資訊(CPU,主機型號,實體記憶體等)UX記憶體
- 檢視作業系統基本資訊作業系統
- centos檢視版本資訊CentOS
- SUSE檢視CPU和記憶體記憶體
- 記憶體瘋狂換頁!CPU怒批作業系統記憶體作業系統
- 如何檢視Linux作業系統版本?Linux作業系統
- 作業系統-記憶體管理作業系統記憶體
- 作業系統——記憶體管理作業系統記憶體
- UNIX系統記憶體檢視方法記憶體
- 作業系統的虛擬記憶體作業系統記憶體
- CentOS8檢視系統版本CentOS
- Centos 伺服器系統記憶體故障排查CentOS伺服器記憶體
- Linux檢視記憶體資訊Linux記憶體
- 作業系統記憶體管理概述作業系統記憶體
- 作業系統記憶體管理-原理作業系統記憶體
- 【作業系統】記憶體管理概述作業系統記憶體
- 檢視程式cpu和記憶體佔用率記憶體
- linux aix檢視CPU和記憶體LinuxAI記憶體
- 檢視Linux系統版本資訊Linux
- linux檢視系統版本資訊Linux
- shell採集系統cpu 記憶體 磁碟 網路資訊記憶體
- HP-UX作業系統的記憶體UX作業系統記憶體
- windows作業系統支援的最大記憶體Windows作業系統記憶體
- sysconf()函式應用舉例:檢視CPU及記憶體資訊函式記憶體
- win10系統檢視電腦CPU處理器和記憶體的方法Win10記憶體
- linux下檢視CPU、記憶體、硬碟方法Linux記憶體硬碟
- aix 檢視記憶體_cpu_序列號碼AI記憶體
- 作業系統-記憶體、檔案管理作業系統記憶體
- Linux(CentOS) 檢視當前佔用CPU或記憶體最多的K個程式LinuxCentOS記憶體
- CentOS下檢視系統版本的4種方法CentOS
- 【功能筆記】Ubuntu檢視系統資源佔用(記憶體,cpu和程式) {轉載}筆記Ubuntu記憶體
- MySQL記憶體管理,記憶體分配器和作業系統MySql記憶體作業系統
- linux下檢視最消耗CPU、記憶體的程式Linux記憶體
- 作業系統的記憶體管理你知道嗎作業系統記憶體