如何查看 OpenBSD 上的 BIOS 版本号?

如何查看 OpenBSD 上的 BIOS 版本号?

在 Linux 上,我会dmidecode -s bios-version以 root 身份执行类似操作。

OpenBSD 的等效项是什么?

答案1

作为root

pkg_add dmidecode
# if not done so already
printf "kern.allowkmem=1\n" >> /etc/sysctl.conf
reboot

然后再次作为root

dmidecode -s bios-version

答案2

通常,dmesg就足够了:

$ dmesg | grep ^bios0
bios0 at mainbus0: SMBIOS rev. 3.0 @ 0xa728d000 (91 entries)
bios0: vendor American Megatrends Inc. version "1205" date 05/03/2018
bios0: ASUSTeK COMPUTER INC. PRIME H270-PRO

第二行是相关行,在本例中:机器的 BIOS 版本为 1205。

相关内容