How to know the motherboard BIOS version using the command line

Solution 1:

I got the solution.

Using dmidecode (of course), but the problem was with the result...

I don't want to list block result about my bios I just need the version..

The command is:

sudo dmidecode -s bios-version

The output will just print the version:

SIX7910J.86A.0537.2012.0723.1217

Solution 2:

Try this command,

sudo dmidecode | less

enter image description here