How to check motherboard chipset?

31,383

That command you're looking for is dmidecode. dmidecode is a tool for dumping a computer's DMI (some say SMBIOS) table contents in a human-readable format.

To get a full infomation about system hardware:

dmidecode | less

You can use dmidecode with grep to get a specific section from command's results:

sudo dmidecode | grep -A4 'Base Board Information'

You can use dmidecode with --string argument to display a specific piece of information:

sudo dmidecode --string baseboard-manufacturer

For the full list of supported strings checkout the man page.

man dmidecode

If dmidecode is not available on your system, you can install it by running:

sudo apt-get install dmidecode
Share:
31,383

Related videos on Youtube

Jaise George
Author by

Jaise George

Updated on September 18, 2022

Comments