測試linux機器的硬體資訊

2021-06-23 00:17:46 字數 1030 閱讀 8685

測試機器的硬體資訊: 

檢視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

linux下檢視機器的硬體資訊

檢視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 ...

獲取機器的硬體資訊

在.net環境下 用vc 描述 獲取機器的硬體資訊,要用到乙個類庫 system.management.dll 在解決方案資源管理器中新增system.management 即可 我們可以將該程式編譯成.dll檔案,便於以後呼叫 在程式 中進行引用 using system.management 具...

Linux如何檢視機器的硬體配置資訊

主要是看兩個檔案 proc meminfo 和 proc cpuinfo cpu主要關注如下字段 1.cpu核心數計算 總核數 物理cpu個數 x 每顆物理cpu的核數 總邏輯cpu數 物理cpu個數 x 每顆物理cpu的核數 x 超執行緒數 檢視物理cpu個數 cat proc cpuinfo g...