How to Display System and Hardware Details in Linux Mint 20

Every computer system has certain specifications and sometimes you feel the need to know the details of a particular system component. In such scenarios, you should know all the ways through which you can extract the relevant information about a particular component.

This tutorial will show you a wide range of commands and tools to display hardware details of your computer on Linux Mint 20. The same commands will work on Ubuntu Linux and Debian too.

Displaying System and Hardware Details in Linux Mint 20

There are different ways of displaying different system and hardware details in Linux Mint 20 which are discussed below:

Check computer system name

To check the Kernel name of your system, you have to execute the following command:

uname

Get system name

Check the Release Number of your System’s Kernel

If you want to check the release number of your system’s kernel, then you will have to execute the command mentioned below:

uname -r

Kernel version number

Check the Version Number of your System’s Kernel

To know the version number of your system’s kernel, the following command should be executed:

uname -v

Kernel version

Check the Name of your Network Node

You can even know the hostname of your network node by executing the command shown below in your Linux Mint 20 terminal:

uname --nodename

Check the Name of your Network Node

Check the Processor Type of your System

You can check out the processor type of your Linux Mint 20 system by running the following command in your terminal:

uname -p

Processor Type

Check the Operating System of your Machine

The operating system of a Linux Mint 20 system can be checked by executing the command shown below:

uname -o

Operating System

Check the system architecture

For checking the make/model of your Linux Mint 20 system’s hardware, you have to execute the following command:

uname –m

System architecture

Check the Hardware Platform of your System

You can even check the hardware platform of your Linux Mint 20 system simply by running the command shown below:

uname -i

Hardware Platform

Check all the CPU Related Information of your System

Basically, the CPU related information of a Linux based system is stored in the /proc/cpuinfo file. Therefore, if you want to know about all the CPU related information of your Linux Mint 20 system, then you can do it by running the following command:

cat /proc/cpuinfo

CPU details

Check the Architecture of your System

The architecture of a Linux Mint 20 system can be found out by executing the command shown below:

dpkg --print-architecture

System architecture

Check the Hard Drive Related Information of your System:

You can check hard drive related information such as disk partitioning, mount points, etc. by running the following command:

lsblk

hard drives and partitions

Check the Virtualization Status of your System

If you want to check if virtualization is enabled on your system or not, you can execute the command shown below:

lscpu

Virtualization Status

The highlighted portion of the image shown above indicates that virtualization is enabled on our Linux Mint 20 system and its type is “full”.

Check the Motherboard Related Information of your System

The motherboard related information of your Linux Mint 20 system can be extracted by running the following command:

sudo dmidecode -t 2

Motherboard details

Check the Hardware Related Information of your System

For getting all the hardware related information of your Linux Mint 20 system, the “lshw” utility needs to be installed on it by executing the command shown below:

sudo apt-get install lshw

install lshw command

Once this utility is installed, you can use it to get the hardware summary of your system in the following manner:

sudo lshw -short

The -short flag has been used over here to extract the summary. Otherwise, the output of the simple “sudo lshw” command is too large.

Get hardware summary using lshw command

Finally, you can even store all your hardware-related statistics in an HTML file by executing the command shown below:

sudo lshw -html > HardwareSummary.html

Get hardware summary as html file

This HTML file will be stored in your Home directory by default. To access this HTML file, you simply have to double click on it and it will open up with your default web browser as shown in the following image:

hardware summary as HTML file

Conclusion

This article shared with you the different ways in which you can extract useful information about the different components of a Linux Mint 20 system. Now, you can access relevant information about any of these components at any time you want.