Linuxコマンド辞典 dmidecodeコマンド(デバイス)

システムのハードウェア情報を出力する「dmidecode」コマンドの概要と使い方を記載しています。

RHEL Fedora CentOS Vine Deblan Ubuntu Plamo

概要・使用方法

書式

$ dmidecode [オプション]

PCのDMI情報(SMBIOSとも呼ぶ)を人が読みやすいように整形して表示します。DMIは「Disktop Management Interface」、SMBIOSは「Software Management BIOS」の略です。PCのハードウェアコンポーネントの詳細を表示します。メモリなどのハードウェア情報の他に、BIOS情報にはそのバージョンなどが記載されているので、出荷タイミングなどを調査できます。

主なDMIタイプ

数値タイプ
0BIOS
1System
2Baseboard
3Chassis
4Processor
5Memory Controller
6Memory Module
7Cache
8Port Connector
9System Slots
10On Board Devices

DMI(Desktop Management Interface)の持つハードウェア情報を出力します。システムのハードウェア情報について詳細な情報を得たい場合に使います。

オプション

-s キーワードキーワードで表示する項目を変更する。bios-vender/system-versionなどが選択できる。
-t タイプタイプで指定したDMIタイプ項目を表示する

CPUの情報を表示する

$ dmidecode -t processor

実行結果

[root@localhost ~]# dmidecode -t processor
# dmidecode 3.3
Getting SMBIOS data from sysfs.
SMBIOS 2.3 present.

Handle 0x0005, DMI type 4, 35 bytes
Processor Information
        Socket Designation: None
        Type: Central Processor
        Family: Core i9
        Manufacturer: None
        ID: ED 06 09 00 FF FB 8B 0F
        Signature: Type 0, Family 6, Model 158, Stepping 13
        Flags:
                FPU (Floating-point unit on-chip)
                VME (Virtual mode extension)
                DE (Debugging extension)
                PSE (Page size extension)
                TSC (Time stamp counter)
                MSR (Model specific registers)
                PAE (Physical address extension)
                MCE (Machine check exception)
                CX8 (CMPXCHG8 instruction supported)
                APIC (On-chip APIC hardware supported)
                SEP (Fast system call)
                MTRR (Memory type range registers)
                PGE (Page global enable)
                MCA (Machine check architecture)
                CMOV (Conditional move instruction supported)
                PAT (Page attribute table)
                PSE-36 (36-bit page size extension)
                CLFSH (CLFLUSH instruction supported)
                MMX (MMX technology supported)
                FXSR (FXSAVE and FXSTOR instructions supported)
・
・
・

キーワードを指定して情報を表示する

CPU情報のみ表示する

$ dmidecode -s processor-version

実行結果

[root@localhost ~]# dmidecode -s processor-version
Intel(R) Core(TM) i9-9900KF CPU @ 3.60GHz

DMIタイプを指定して情報を表示する

$ dmidecode -t bios

実行結果

[root@localhost ~]# dmidecode -t bios #bios情報を表示する
# dmidecode 3.3
Getting SMBIOS data from sysfs.
SMBIOS 2.3 present.

Handle 0x0000, DMI type 0, 20 bytes
BIOS Information
        Vendor: American Megatrends Inc.
        Version: 090008 
        Release Date: 12/07/2018   #製品のリリース日がわかる
        Address: 0xF0000
        Runtime Size: 64 kB
        ROM Size: 256 kB
        Characteristics:
                ISA is supported
                PCI is supported
                PNP is supported
                BIOS is upgradeable
                BIOS shadowing is allowed
                ESCD support is available
                Boot from CD is supported
                Selectable boot is supported
                BIOS ROM is socketed
                EDD is supported
                5.25"/360 kB floppy services are supported (int 13h)
                5.25"/1.2 MB floppy services are supported (int 13h)
                3.5"/720 kB floppy services are supported (int 13h)
                3.5"/2.88 MB floppy services are supported (int 13h)
                Print screen service is supported (int 5h)
                8042 keyboard services are supported (int 9h)
                Serial services are supported (int 14h)
                Printer services are supported (int 17h)
                CGA/mono video services are supported (int 10h)
                AGP is supported
                LS-120 boot is supported
                ATAPI Zip drive boot is supported
                BIOS boot specification is supported

Handle 0x004F, DMI type 13, 22 bytes
BIOS Language Information
        Language Description Format: Abbreviated
        Installable Languages: 1
                enUS
        Currently Installed Language: enUS

[root@localhost ~]#