如何使用命令行知道主板BIOS版本


38

如何获得主板的BIOS版本?

该命令dmidecode为您提供了有关BIOS的一些信息,但找不到所需的信息...


dmidecode在询问之前尝试了命令,但没有找到所需的东西-我只需要BIOS版本,而输出中没有其他内容。


3
请确保您的问题准确反映了您的需求。在这种情况下,您似乎正在寻找一种打印BIOS版本而不打印所有信息(包括 BIOS版本)的方法。
drc

@drc我声明...请再读一次问题,我只是说我想要BIOS版本,我声明我使用dmidecode但我找不到该版本
Maythux

2
正如多个答案所述,查找BIOS版本就像在BIOS Information块中查找字符串Version一样容易。如果您正在寻找打印此版本字符串的方法,请说出这一点。
drc

Answers:


53

我找到了解决方案。

(当然)使用dmidecode,但问题在于结果...

我不想列出有关个人简介的阻止结果,我只需要版本即可。

该命令是:

sudo dmidecode -s bios-version

输出将仅打印版本:

SIX7910J.86A.0537.2012.0723.1217


18

试试这个命令

sudo dmidecode | less

在此处输入图片说明


这不是BIOS版本。我回答了我的问题
Maythux

1
您的命令显示71CN40WW(V1.15)在我的电脑上。
Avinash Raj

@Maythux是错误的。我在PC上运行了Avinash的命令,它的确显示了BIOS版本。我什至可以使用类似vim的命令,所以我说它比Maythux的答案要好。
evaristegd

3

dmidecode除其他外,通常返回包含有关BIOS信息的块。它看起来应该像这样:

BIOS Information
    Vendor: American Megatrends Inc.
    Version: 0309
    Release Date: 04/18/2013
    Address: 0xF0000
    Runtime Size: 64 kB
    ROM Size: 8192 kB
    Characteristics:
        PCI is supported
        APM 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)
        8042 keyboard services are supported (int 9h)
        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: 4.6

这里的信息包括版本BIOS修订版。如果dmidecode您的计算机上未包含该数据,恐怕您将不得不重新启动并查看BIOS。


我不需要列表框reslut我的BIOS我只需要的版本..
Maythux

1

减少DMIDECODE输出的另一种方法是将其移植到Grep并仅提取所需的行-

EG- sudo dmidecode | grep'供应商\ |版本:V \ | BIOS修订版\ |处理器'

在grep内部,每个“或”(竖线)都需要使用反斜杠前缀进行转义,如上所示。

卖方之后可能会有一些其他的“版本”。您应该能够弄清楚是什么,而忽略其余部分。我还没有想办法消除这些... ;-)

奖金!上面还包含了处理器信息。

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.