Techolac - Computer Technology News
  • Home
  • Internet
  • Business
  • Computers
  • Gadgets
  • Lifestyle
  • Phones
  • Travel
  • Tech
  • More
    • Automotive
    • Education
    • Entertainment
    • Health
    • SEO
    • Linux
    • WordPress
    • Home Improvement
    • How to
    • Games
No Result
View All Result
  • Home
  • Internet
  • Business
  • Computers
  • Gadgets
  • Lifestyle
  • Phones
  • Travel
  • Tech
  • More
    • Automotive
    • Education
    • Entertainment
    • Health
    • SEO
    • Linux
    • WordPress
    • Home Improvement
    • How to
    • Games
No Result
View All Result
Techolac - Computer Technology News
No Result
View All Result
Home Linux

How to find Intel NUC BIOS version and model on Linux

by Editorial Staff
December 31, 2020
in Linux
Reading Time: 5 mins read

 

I installed Linux on Intel NUC. I need to find Intel NUC BIOS version. How do I find out BIOS version, date, and model name of my Intel NUC using Linux command-line options?

Introduction – Intel NUC is an acronym for Next Unit of Computing. It is a small factor computer that runs on Linux, *BSD, MS-Windows and any other X86 operating systems. The latest NUC uses eight generations Intel CPUs. One can find out Intel NUC BIOS version using the dmidecode command. You must log in as the root user to run dmidecode command.
Intel NUC

Table of Contents
Adblock detected 😱
Find Intel NUC BIOS version and model on Linux
Linux find Intel NUC BIOS version
How to check BIOS firmware version in Linux
Find Intel NUC BIOS date in Linux
Finding Intel NUC model name on Linux
Putting it all together using bash for loop
Conclusion
Posted by: Vivek Gite
Adblock detected 😱
My website is made possible by displaying online advertisements to my visitors. I get it! Ads are annoying but they help keep this website running. It is hard to keep the site running and producing new content when so many people block ads. Please consider donating money to the nixCraft via PayPal/Bitcoin, or become a supporter using Patreon.

 

Find Intel NUC BIOS version and model on Linux

The procedure to find BIOS version is as follows:

  1. Open the terminal window application
  2. Type sudo dmidecode command to find Intel NUC BIOS version
  3. You can also use sudo dmidecode -s bios-version to obtain Intel NUC bios version on Linux

Let us see all examples and commands in details.

Linux find Intel NUC BIOS version

Find out BIOS version, run:
# dmidecode | less
$ sudo dmidecode | less

Sample outputs:

# dmidecode 3.2
Getting SMBIOS data from sysfs.
SMBIOS 3.1.1 present.
Table at 0x7FE86000.
 
Handle 0x0000, DMI type 0, 26 bytes
BIOS Information
        Vendor: Intel Corp.
        Version: DNKBLi7v.86A.0040.2018.0315.1507
        Release Date: 03/15/2018
        Address: 0xF0000
        Runtime Size: 64 kB
        ROM Size: 16 MB
        Characteristics:
                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 services are supported (int 13h)
                3.5"/720 kB floppy services are supported (int 13h)
                3.5"/2.88 MB floppy services are supported (int 13h)
                Print screen service is supported (int 5h)
                Serial services are supported (int 14h)
                Printer services are supported (int 17h)
                ACPI is supported
                USB legacy is supported
                BIOS boot specification is supported
                Targeted content distribution is supported
                UEFI is supported
        BIOS Revision: 5.6
 
Handle 0x0001, DMI type 1, 27 bytes
System Information
        Manufacturer: Intel Corporation
        Product Name: NUC7i7DNHE
        Version: J85489-204
        Serial Number: DW1XXXXXXXXXXXXX
        UUID: 8b94dcaf-dcf1-440f-adf0-54b2030900be
        Wake-up Type: Power Switch
        SKU Number:

# dmidecode 3.2
Getting SMBIOS data from sysfs.
SMBIOS 3.1.1 present.
Table at 0x7FE86000. Handle 0x0000, DMI type 0, 26 bytes
BIOS Information
Vendor: Intel Corp.
Version: DNKBLi7v.86A.0040.2018.0315.1507
Release Date: 03/15/2018
Address: 0xF0000
Runtime Size: 64 kB
ROM Size: 16 MB
Characteristics:
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 services are supported (int 13h)
3.5″/720 kB floppy services are supported (int 13h)
3.5″/2.88 MB floppy services are supported (int 13h)
Print screen service is supported (int 5h)
Serial services are supported (int 14h)
Printer services are supported (int 17h)
ACPI is supported
USB legacy is supported
BIOS boot specification is supported
Targeted content distribution is supported
UEFI is supported
BIOS Revision: 5.6 Handle 0x0001, DMI type 1, 27 bytes
System Information
Manufacturer: Intel Corporation
Product Name: NUC7i7DNHE
Version: J85489-204
Serial Number: DW1XXXXXXXXXXXXX
UUID: 8b94dcaf-dcf1-440f-adf0-54b2030900be
Wake-up Type: Power Switch
SKU Number:

How to check BIOS firmware version in Linux

In this example display Intel NUC BIOS version using the -s option:
sudo dmidecode -s bios-version

Find Intel NUC BIOS date in Linux

sudo dmidecode -s bios-release-date

Finding Intel NUC model name on Linux

sudo dmidecode -s system-product-name

Putting it all together using bash for loop

Run the following snippet:

for d in system-manufacturer system-product-name bios-release-date bios-version
do
   echo "${d^} : " $(sudo dmidecode -s $d)
done

for d in system-manufacturer system-product-name bios-release-date bios-version
do
echo “${d^} : ” $(sudo dmidecode -s $d)
done

Identify BIOS Version on Intel NUC using Linux command

Identify BIOS Version on Intel NUC using Linux command
It is also possible to show Intel NUC bios version using following command:
sudo dmidecode --type bios

Linux find Intel NUC BIOS version command
Finding Intel NUC BIOS version using Linux command line option

Conclusion

BIOS update usually fix bugs and may support newer features or hardware. For example, update bios may help with overheating GPU issues or support a new CPU and more. Hence, it is recommended that you check BIOS version and update it. You can grab the latest version of Intel NUC BIOS by visiting this page.

Posted by: Vivek Gite

The author is the creator of nixCraft and a seasoned sysadmin, DevOps engineer, and a trainer for the Linux operating system/Unix shell scripting. Get the latest tutorials on SysAdmin, Linux/Unix and open source topics via RSS/XML feed or weekly email newsletter.

 

Related Posts

Apache, MySQL Performance

How to Optimize Apache, MySQL Performance for 1GB RAM VPS Centos/RHEL

April 7, 2024
Top 5 MySQL Performance Tuning Tips

Top 5 MySQL Performance Tuning Tips

January 25, 2023

Top Commands to Check the Running Processes in Linux

May 27, 2022

4 Tips to Prevent and Troubleshoot the ImagePullBackOff Kubernetes Error

March 30, 2022

How Common Signals are Used in Kubernetes Pod Management

November 20, 2021

How to Transfer Windows 10 to SSD?

April 14, 2022

Leave a Reply Cancel reply

Your email address will not be published. Required fields are marked *

Recent Articles

  • Biometric Banking: Why Your Face, Fingerprint, and Voice Are the New PIN
  • The Revolution in Telecommunications: How technology is changing connections
  • Understanding the Differences: BACS vs CHAPS Payment Systems Explained
  • Why CSPM Is the Unsung Hero of Enterprise Cloud Security
  • The New Face of Antivirus: Smarter, Faster, and Built for 2025 Threats
  • What are The Responsibilities of your tax preparer?
  • Best 10 Cryptocurrency Exchange Development Companies 2025

Related Posts

None found

  • DashTech
  • TechDaddy
  • Terms and Conditions
  • Disclaimer
  • Write for us

© Techolac © Copyright 2019 - 2022, All Rights Reserved.

No Result
View All Result
  • Home
  • Internet
  • Business
  • Computers
  • Gadgets
  • Lifestyle
  • Phones
  • Travel
  • Tech
  • More
    • Automotive
    • Education
    • Entertainment
    • Health
    • SEO
    • Linux
    • WordPress
    • Home Improvement
    • How to
    • Games

© Techolac © Copyright 2019 - 2022, All Rights Reserved.