1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages/linux/dmidecode.md

24 lines
424 B
Markdown
Raw Normal View History

2018-01-01 16:59:03 +08:00
# dmidecode
2018-01-01 20:10:21 +08:00
> Display the DMI (some say SMBIOS) table contents in a human-readable format with root privilege.
2018-01-01 16:59:03 +08:00
- Show all DMI table contents:
`sudo dmidecode`
- Show the BIOS version:
`sudo dmidecode -s bios-version`
2018-01-01 20:10:21 +08:00
- Show the system's serial number:
2018-01-01 16:59:03 +08:00
2018-01-01 20:10:21 +08:00
`sudo dmidecode -s system-serial-number`
2018-01-01 16:59:03 +08:00
2018-01-01 20:10:21 +08:00
- Show all the BIOS information:
2018-01-01 16:59:03 +08:00
`sudo dmidecode -t bios`
2018-01-01 20:10:21 +08:00
- Show all the system information:
2018-01-01 16:59:03 +08:00
`sudo dmidecode -t system`