mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-29 23:24:55 +02:00
24 lines
416 B
Markdown
24 lines
416 B
Markdown
![]() |
# dmidecode
|
||
|
|
||
|
> Display the DMI (some say SMBIOS) table contents in a human-readable format as root user.
|
||
|
|
||
|
- Show all DMI table contents:
|
||
|
|
||
|
`sudo dmidecode`
|
||
|
|
||
|
- Show the BIOS version:
|
||
|
|
||
|
`sudo dmidecode -s bios-version`
|
||
|
|
||
|
- Show the system serial number:
|
||
|
|
||
|
`sudo dmidecode system-serial-number`
|
||
|
|
||
|
- Show the whole BIOS information:
|
||
|
|
||
|
`sudo dmidecode -t bios`
|
||
|
|
||
|
- Show the whole system information:
|
||
|
|
||
|
`sudo dmidecode -t system`
|