檢視硬體資訊

2021-08-30 21:14:10 字數 978 閱讀 5240

測試機器的硬體資訊:

檢視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檢視硬體資訊

在linux環境開發驅動程式,首先要探測到新硬體,接下來就是開發驅動程式。常用命令整理如下 用硬體檢測程式kudzu探測新硬體 service kudzu start or restart 檢視cpu資訊 cat proc cpuinfo 檢視板卡資訊 cat proc pci 檢視pci資訊 ls...

CentOS檢視硬體資訊

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

ubuntu檢視硬體資訊

1,外部探針probe sudo apt get install hwinfo 執行hwinfo獲取系統資訊 short 2,系統命令dmidecode 硬體資訊 or dmesg 主要是開機資訊 基於命令ubuntu 系統硬體資訊檢視 主機板資訊,序列號,產品名 dmesg grep i cpu ...