在Linux上如何查看Intel NUC BIOS版本和型号
时间:2019-11-20 08:53:53 来源:igfitidea点击:
如何查看英特尔NUC 的BIOS版本?
在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.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:
也可以使用以下命令显示Intel NUC BIOS版本:
sudo dmidecode --type bios
在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
将它们放入for循环脚本中
for d in system-manufacturer system-product-name bios-release-date bios-version
do
echo "${d^} : " $(sudo dmidecode -s $d)
done

