How to Find Your Motherboard Model in Ubuntu

hardware

Is there a way to find what motherboard model I have?

If yes, how, please?

Best Answer

There's also some great graphical tools that show you not just your motherboard info, but all info about your computer.

  1. Hardinfo

    Search for the hardinfo package in the Software Center or run sudo apt-get install hardinfo from the command line. The motherboard make and model can be found on the Devices > DMI page.

    Hardinfo image

  2. CPU-G - Linux alternative to the popular Windows application CPU-Z. Originally created by ftsamis, it has since been picked up by Atareao Team

    sudo add-apt-repository ppa:atareao/atareao
    sudo apt update
    sudo apt install cpu-g
    

    CPU-G image

  3. lshw-gtk – Graphical frontend for lshw command

    lshw-gtk image

  4. PerlMon

    Perlmon image

Related Question