How to find Intel NUC BIOS version and model on Linux

You can find the Intel NUC BIOS version and model on Linux by running the following command in the terminal:

sudo dmidecode -t system

This command will provide detailed information about the system, including the BIOS version and the model of the Intel NUC. Look for the “BIOS Revision” and “Product Name” fields in the output for this information.

Alternatively, you can use the following command to get the bios version only:

sudo dmidecode -s bios-version

You can also use the following command to get the system product name:

sudo dmidecode -s system-product-name

Note that the dmidecode command may not be installed by default on your Linux distribution, so you may need to install it using your distribution’s package manager, such as apt or yum, before running the command.

Leave a Comment