Linux檢視CPU資訊、機器型號等硬體資訊

逍遙三人發表於2012-02-20
效能測試需要記錄效能測試機器的硬體資訊,現將需要的命令總結如下:

檢視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)
PS:Jay added on 10th, May, 2011
# 其實是可能有超執行緒HT技術,不一定是有4核,也可能是2核4執行緒;當時還理解不清楚

# 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

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/21584437/viewspace-716803/,如需轉載,請註明出處,否則將追究法律責任。

相關文章