How To Get Intel NUC BIOS Model and Version on Linux

This post will guide you how to discover Intel NUC BIOS Model and version from the command line on your Linux operating system. How do I find out more detailed information about Intel NUC BIOS Model on Linux system.

How To Get Intel NUC BIOS Model and Version on Linux1

What is Intel NUC


The Intel NUC is a powerful 4×4-inch Mini PC with entertainment, gaming, and productivity features, including a customizable board that is ready to accept the memory, storage, and operating systems that you want.

Next Unit of Computing (NUC) is a line of small-form-factor barebone computer kits designed by Intel.The NUC has had eight generations so far, spanning from Sandy Bridge-based Celeron CPUs in the first generation through Ivy Bridge-based Core i3 and i5 CPUs in the second generation to Gemini Lake-based Pentium and Celeron CPUs and Kaby Lake-based Core i3, i5, and i7 CPUs .

Dmidecode Command


dmidecode is a tool for dumping a computer’s DMI (some say SMBIOS) table contents in a human-readable format. This table contains a description of the system’s hardware components, as well as other useful pieces of information such as serial numbers and BIOS revision. Thanks to this table, you can retrieve this information without having to probe for the actual hardware. While this is a good point in terms of report speed and safeness, this also makes the presented information possibly unreliable.

The syntax of the Dmidecode command is as follows:

 dmidecode [OPTIONS]

Discover Intel NUC BIOS Model and Version


If you install the Linux OS on Intel NUC , and you want to find out the intel NUC BIOS model, and you want to get BIOS model, date, and manequin indentify of your Intel NUC utilizing from the command line on your Linux system. And you can use dmidecode command with “-s” option and bios-version subcommand to find out Intel NUC BIOS version , or you can directly run dmidecode command only to get infromation for Intel NUC BIOS model, type:

$ dmidecode -s bios-version
$ dmidecode

Outputs:

$ dmidecode
# dmidecode three.2
Getting SMBIOS knowledge from sysfs.
SMBIOS three.1.1 current.
Desk at 0x7FE86000.

Deal with 0x0000, DMI sort zero, 26 bytes
BIOS Info
Vendor: Intel Corp.
Model: DNKBLi7v.86A.0040.2018.0315.1507
Launch Date: 03/15/2018
Deal with: 0xF0000
Runtime Measurement: 64 kB
ROM Measurement: 16 MB
Traits:
PCI is supported
BIOS is upgradeable
BIOS shadowing is allowed
Boot from CD is supported
Selectable boot is supported
BIOS ROM is socketed
EDD is supported
5.25“/1.2 MB floppy companies are supported (int 13h)
three.5”/720 kB floppy companies are supported (int 13h)
three.5“/2.88 MB floppy companies are supported (int 13h)
Print display screen service is supported (int 5h)
Serial companies are supported (int 14h)
Printer companies are supported (int 17h)
ACPI is supported
USB legacy is supported
BIOS boot specification is supported
Focused content material distribution is supported
UEFI is supported
BIOS Revision: 5.6

Deal with 0x0001, DMI sort 1, 27 bytes
System Info
Producer: Intel Company
Product Identify: NUC7i7DNHE
Model: J85489-204
Serial Quantity: DW1XXXXXXXXXXXXX
UUID: 8b94dcaf-dcf1-440f-adf0-54b2030900be
Wake-up Sort: Energy Swap
......

If you want to get more information about dmidecode, and you can run the following command:

$ man dmidecode

or

$ dmidecode --help

Outputs:

devops@devops:~$ dmidecode --help
Usage: dmidecode [OPTIONS]
Options are:
-d, --dev-mem FILE Read memory from device FILE (default: /dev/mem)
-h, --help Display this help text and exit
-q, --quiet Less verbose output
-s, --string KEYWORD Only display the value of the given DMI string
-t, --type TYPE Only display the entries of given type
-u, --dump Do not decode the entries
--dump-bin FILE Dump the DMI data to a binary file
--from-dump FILE Read the DMI data from a binary file
--no-sysfs Do not attempt to read DMI data from sysfs files
--oem-string N Only display the value of the given OEM string
-V, --version Display the version and exit
devops@devops:~$

Conclusion


You should know that how to find out Intel NUC BIOS model or versio using dmidecode command in your Linux system.

You might also like:

Sidebar



back to top