Menü Schließen

Linux – Bios Informationen mittels dmidecode anzeigen

Unix Shell

Wer unter Linux, ich verwende hier Debian, Informationen wie Hersteller, Version, Release Date, ROM Size und weitere Eigenschaften vom Mainboard Bios anzeigen möchte, kann dies mittels dem Tool dmidecode (DMI = Desktop Management Interface)machen.

Hier ein Beispiel von meinem Gigabyte GA-A75M-S2V

DMIDECODE installieren

# apt install -y dmidecode

alle Informationen Zeilenweise ausgeben lassen:

# dmidecode | less
# dmidecode 3.2-1
SMBIOS 2.4 present.
50 structures occupying 1474 bytes.
Table at 0x000F0100.
Handle 0x0000, DMI type 0, 24 bytes
BIOS Information
Vendor: Award Software International, Inc.
Version: F5
Release Date: 11/03/2011
Address: 0xE0000
Runtime Size: 128 kB
ROM Size: 4096 kB
Characteristics:
...
usw.

Um gezielt bestimmte Informationen zu erhalten, kann auf die DMI Types zugreifen:

TypeInformationTypeInformation
0BIOS21Built-in Pointing Device
1System22Portable Battery
2Base Board23System Reset
3Chassis24Hardware Security
4Processor25System Power Controls
5Memory Controller26Voltage Probe
6Memory Module27Cooling Device
7Cache28Temperature Probe
8Port Connector29Electrical Current Probe
9System Slots30Out-of-band Remote Access
10On Board Devices31Boot Integrity Services
11OEM Strings32System Boot
12System Configuration Options3364-bit Memory Error
13BIOS Language34Management Device
14Group Associations35Management Device Component
15System Event Log36Management Device Threshold Data
16Physical Memory Array37Memory Channel
17Memory Device38IPMI Device
1832-bit Memory Error39Power Supply
19Memory Array Mapped Address40Additional Information
20Memory Device Mapped Address41Onboard Device
DMI Types

Anstellen der Types kann auch auf Keywords mittels Parameter --type oder -t zugegriffen werden.

KeywordTypes
bios0
system1, 12, 15, 23, 32
baseboard2, 10, 41
chassis3
processor4
memory5, 6, 16, 17
cache7
connector8
slot9
DMI Keywords

Verwendet werden DMI Type und Keywords wie folgt:

DMI Informationen zum Arbeitsspeicher:

# alle RAM Infos
dmidecote -t memory

# wichtige RAM INfos
dmidecode -t memory | egrep "Maximum Capacity|Number Of Devices|Size|Type:" | egrep -v "No Module|Unknown|None"

DMI Informationen zum Prozessor / CPU:

# alle CPU Infos
dmidecode -t processor
# oder
dmidecode -t 4

# wichtige CPU Infos
dmidecode -t processor | egrep "Family|Manufacturer|Version|Max Speed|Core Count|Thread Count"

DMI Informationen zum BIOS:

# dmidecode -t bios

DMI Informationen zum System:

# dmidecode -t system

DMI Information zum Mainboard:

# dmidecode -t baseboard

Thats it .. Have Fun!

Schreibe einen Kommentar

Deine E-Mail-Adresse wird nicht veröffentlicht. Erforderliche Felder sind mit * markiert