如何在Linux上查找Intel NUC BIOS版本和型号
时间:2020-01-09 14:17:09 来源:igfitidea点击:
如何查看英特尔NUC BIOS版本。
如何使用Linux命令行选项找出我的Intel NUC的BIOS版本,日期和型号名称?
说明英特尔NUC是"下一代计算单元"的缩写。
它是运行在Linux,* BSD,MS-Windows和任何其他X86操作系统上的小型计算机。
最新的NUC使用八代Intel CPU。
可以使用dmidecode命令找出Intel NUC BIOS版本。
您必须以root用户身份登录才能运行dmidecode命令。
在Linux上查找Intel NUC BIOS版本和型号
查找BIOS版本的步骤如下:
- 打开终端窗口应用程序
- 执行sudo dmidecode命令以查找Intel NUC BIOS版本
- 您也可以使用sudo dmidecode -s bios-version在Linux上获取Intel NUC bios版本
让我们详细查看所有示例和命令。
Linux找到Intel NUC BIOS版本
找出BIOS版本,运行:
# dmidecode | less $ sudo dmidecode | less
输出示例:
# 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.2016.0315.1507
Release Date: 03/15/2016
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:
如何在Linux中检查BIOS固件版本
在此示例中,使用-s选项显示Intel NUC BIOS版本:
sudo dmidecode -s bios-version
在Linux中查找Intel NUC BIOS日期
sudo dmidecode -s bios-release-date
在Linux上查找Intel NUC型号名称
sudo dmidecode -s system-product-name
使用bash for 循环将它们放在一起
运行以下代码段:
for d in system-manufacturer system-product-name bios-release-date bios-version
do
echo "${d^} : " $(sudo dmidecode -s $d)
done
使用Linux命令在Intel NUC上识别BIOS版本
也可以使用以下命令显示Intel NUC BIOS版本:
sudo dmidecode --type bios

