Centos 6 5 檢視硬體資訊

2021-07-11 03:38:57 字數 1003 閱讀 3915

測試機器的硬體資訊:

檢視cpu資訊(型號)

# cat /proc/cpuinfo | grep name | cut -f2 -d: | uniq -c

8  intel(r) xeon(r) cpu            e5410   @ 2.33ghz

(看到有8個邏輯cpu, 也知道了cpu型號)

# cat /proc/cpuinfo | grep physical | uniq -c

4 physical id      : 0

4 physical id      : 1

(說明實際上是兩顆4核的cpu)

# getconf long_bit

32(說明當前cpu執行在32bit模式下, 但不代表cpu不支援64bit)

# cat /proc/cpuinfo | grep flags | grep ' lm ' | wc -l

8(結果大於0, 說明支援64bit計算. lm指long mode, 支援lm則是64bit)

再完整看cpu詳細資訊, 不過大部分我們都不關心而已.

# dmidecode | grep 'processor information'

檢視內 存資訊

# cat /proc/meminfo

# uname -a

linux euis1 2.6.9-55.elsmp #1 smp fri apr 20 17:03:35 edt 2007 i686 i686 i386 gnu/linux

(檢視當前作業系統核心資訊)

# cat /etc/issue | grep linux

red hat enterprise linux as release 4 (nahant update 5)

(檢視當前作業系統發行版資訊)

檢視機器型號

# dmidecode | grep "product name" 

檢視網絡卡資訊

# dmesg | grep -i eth

Centos6 5系統資訊檢視

1 檢視伺服器位數 root localhost arch 2 檢視cpu 是否支援64bit root localhost cat proc cpuinfo grep flags grep lm wc l 結果大於0,說明支援64bit計算.lm指long mode,支援lm則是64bit。3 邏...

CentOS檢視硬體資訊

1 centos 下檢視硬體資訊內容非常全面。centos常用命令檢視cpu more proc cpuinfo grep model name grep model name proc cpuinfo root localhost grep cpu proc cpuinfo model name ...

centos 下檢視硬體資訊

centos 下檢視硬體資訊 一 使用centos常用命令檢視cpu more proc cpuinfo grep model name grep model name proc cpuinfo root localhost grep cpu proc cpuinfo model name inte...