Defining Motherboard, CPU and BIOS info in Linux terminal

In this article, I’m going to explain how to read motherboard, cpu and bios information under linux terminal.

Reading Motherboard Information:

# sudo dmidecode -t 2

 

Reading Motherboard Serial Number:

# sudo dmidecode -t 2 | grep Serial

 

And OEM Information:

# sudo dmidecode -t 11

The CPU information:

# sudo dmidecode -t 4

 

For CPU ID:

# sudo dmidecode -t 4 | grep ID

 

For BIOS Information:

# sudo dmidecode -t 0