Check Motherboard, BIOS, Processor, CPU ID From Command Line In Ubuntu Linux

Check Motherboard, BIOS, Processor, CPU ID From Command Line In Ubuntu Linux: "

Most users of Linux based systems work on the command line. Remote system administrators connect to their production servers via the command line and run multiple commands to achieve tasks. Lets see how we can determine the Motherboard, BIOS and CPU information directly from the command line.



Launch the Terminal and run the following command to determine the CPU ID:


sudo dmidecode –t 4 | grep ID


The following command will display the BIOS information on the terminal:


sudo dmidecode –t o


The following command will show you the processor information.


sudo dmidecode –t 4


If you are want to see the OEM information of your machine then run the following command:


sudo dmidecode –t 11


BIOS INfo


"