The right way to discover Intel NUC BIOS model and mannequin on Linux
I put in Linux on Intel NUC. I want to search out Intel NUC BIOS model. How do I discover out BIOS model, date, and mannequin identify of my Intel NUC utilizing Linux command-line choices?
Introduction – Intel NUC is an acronym for Subsequent Unit of Computing. It’s a small issue laptop that runs on Linux, *BSD, MS-Home windows and some other X86 working techniques. The newest NUC makes use of eight generations Intel CPUs. One can discover out Intel NUC BIOS model utilizing the dmidecode command. You have to log in as the foundation consumer to run dmidecode command.
Discover Intel NUC BIOS model and mannequin on Linux
The process to search out BIOS model is as follows:
Open the terminal window applicationType sudo dmidecode command to search out Intel NUC BIOS versionYou may also use sudo dmidecode -s bios-version to acquire Intel NUC bios model on Linux
Allow us to see all examples and instructions in particulars.
Linux discover Intel NUC BIOS model
Discover out BIOS model, run:
# dmidecode | much less
$ sudo dmidecode | much less
Pattern outputs:
# 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
SKU Quantity:
The right way to test BIOS firmware model in Linux
On this instance show Intel NUC BIOS model utilizing the -s choice:
sudo dmidecode -s bios-version
Discover Intel NUC BIOS date in Linux
sudo dmidecode -s bios-release-date
Discovering Intel NUC mannequin identify on Linux
sudo dmidecode -s system-product-name
Placing all of it collectively utilizing bash for loop
Run the next snippet:
for d in system-manufacturer system-product-name bios-release-date bios-version
do
echo “$d^ : “ $(sudo dmidecode -s $d)
achieved
Establish BIOS Model on Intel NUC utilizing Linux command
Additionally it is doable to point out Intel NUC bios model utilizing following command:
sudo dmidecode –type biosDiscovering Intel NUC BIOS model utilizing Linux command line choice
Conclusion
BIOS replace normally repair bugs and will assist newer options or hardware. For instance, replace bios could assist with overheating GPU points or assist a brand new CPU and extra. Therefore, it’s endorsed that you just test BIOS model and replace it. You may seize the most recent model of Intel NUC BIOS by visiting this web page.