如何在 Ubuntu 中确定 BIOS 年龄

如何在 Ubuntu 中确定 BIOS 年龄

我的电脑很旧,有时无法开机。有没有办法在 Ubuntu 中查看 BIOS 安装日期来了解它的年龄?我正在运行 Ubuntu 14.04。

答案1

这是我在 Ubuntu 14.04 上查找计算机上 BIOS 日期的方法。使用此命令需要 root 权限。

sudo dmidecode -s bios-release-date

04/18/2011

如果您想要除 BIOS 日期之外的更多信息,此命令将为您提供大量信息:

sudo dmidecode | more

# dmidecode 2.12
SMBIOS 2.5 present.
68 structures occupying 2501 bytes.
Table at 0x0009F000.

Handle 0x0000, DMI type 0, 24 bytes
BIOS Information
    Vendor: American Megatrends Inc.
    Version: 0402   
    Release Date: 04/18/2011
    Address: 0xF0000
    Runtime Size: 64 kB
    ROM Size: 2048 kB

相关内容