Linux dmidecode備忘

kumu_linux發表於2012-10-15

dmidecode

 之前筆者在文章Linux下檢視主機板的相關資訊中已經介紹了該命令檢視主機板資訊的用法,這裡進一步介紹


DMI,即DesktopManagement Interface。也有被稱為SMBIOS,即System Management BIOS。DMI表的意義在於讓我們在不探測硬體實體的情況下獲取硬體的部分資訊,方便了使用者,但也同時表明,表中的資訊可能是不可靠的。

dmidecode的作用則是將DMI表中的資訊用人可以讀懂的方式顯示出來。

 

最簡單的使用方法,它將顯示dmidecode所能獲取到的全部dmi資訊:

# dmidecode

 

下面列幾個表格:

常用引數

-q 或 --quiet

不顯示太多資訊,比如某條資料是從哪裡讀來的等等,為了得到簡潔的資訊,此條很有用。

-t 或 --type TYPE

指定要顯示哪方面的內容,很重要,隨後介紹。

-s 或 --string KEYWORD

顯示特定的關鍵字,下面會有介紹。

-u 或 --dump

直接顯示DMI表資訊而不解碼,將以16進位制的文字方式顯示,對普通使用者意義不大。

 

-t 或 --type後的文字引數

bios

bios的各項資訊

system

系統資訊,在我的筆記本上可以看到版本、型號、序號等資訊。

baseboard

主機板資訊

chassis

“底板”,不太理解其含意,期待大家補充

processor

CPU的詳細資訊

memory

記憶體資訊,包括目前插的記憶體條數及大小,支援的單條最大記憶體和總記憶體大小等等。

cache

快取資訊,似乎是CPU的快取資訊

connector

在我的電腦是PCI裝置的資訊

slot

插槽資訊


之前筆者由於對該命令不是很熟悉,當時使用的是dmidecode結合grep獲取主機板資訊的,現在獲取就比較方便了

[root@www ~]# dmidecode -t

dmidecode: option requires anargument -- 't'

Type number or keyword expected

Valid type keywords are:

  bios

  system

  baseboard

  chassis

  processor

  memory

  cache

  connector

  slot

[root@www ~]# dmidecode -t baseboard

# dmidecode 2.11

SMBIOS 2.4 present.

 

Handle 0x0002, DMI type 2, 15bytes

Base Board Information

         Manufacturer: Intel Corporation

         Product Name: 440BX Desktop Reference Platform

         Version: None

         Serial Number: None

         Asset Tag: Not Specified

         Features: None

         Location In Chassis: Not Specified

         Chassis Handle: 0x0000

         Type: Unknown

         Contained Object Handles: 0

 

Handle 0x00DF, DMI type 10, 8bytes

On Board Device 1 Information

         Type: Video

         Status: Disabled

         Description: VMware SVGA II

On Board Device 2 Information

         Type: Sound

         Status: Disabled

         Description: ES1371

 

[root@www ~]#


1、檢視伺服器型號:dmidecode | grep 'Product Name'

2、檢視主機板的序列號:dmidecode |grep 'Serial Number'

3、檢視系統序列號:dmidecode -s system-serial-number

4、檢視記憶體資訊:dmidecode -t memory

5、檢視OEM資訊:dmidecode -t 11

參考:http://linux-wiki.cn/wiki/zh-hans/Dmidecode

http://www.ha97.com/4120.html