From a81a6fab3350410b8548c455025821f82cccf125 Mon Sep 17 00:00:00 2001 From: Max Xu Date: Mon, 1 Jan 2018 16:59:03 +0800 Subject: [PATCH] dmidecode.md: add page --- pages/linux/dmidecode.md | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 pages/linux/dmidecode.md diff --git a/pages/linux/dmidecode.md b/pages/linux/dmidecode.md new file mode 100644 index 000000000..9e29a4b56 --- /dev/null +++ b/pages/linux/dmidecode.md @@ -0,0 +1,23 @@ +# 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`