15

I do not know how to check the PC specs on Ubuntu. Is there a specific command for this? Or do I search it in the menu?

Tell me if I need to provide extra info.

5 Answers5

14

Go to Settings → About. You get some info there.

Else commands like lshw give you a complete list.

LarsAamo
  • 445
11

You can also use neofetch. First install it:

sudo apt update
sudo apt install neofetch

To use it type

neofetch

and you will get something like this: enter image description here

3

I usually use the commands cat /proc/cpuinfo (to get detailed information about the cpu including clock speeds etc.) and lspci (to get all devices connected to the pci buses such as graphics cards etc.), and of course these are specifically to get information regarding the CPU and pci devices. To get an idea of the installed memory, use the top command which shows the current usage of the system processor and memory along with the task id of each process using the resources.

Also, the htop and glances commands are really nice, but you might have to install them through apt-get.

PBH
  • 131
0

This is the command I use which gives the System Info, System Configuration and System Boot Info which is the computer's DMI in a human readable format:

$ sudo dmidecode -t system

For example:

# dmidecode 3.3
Getting SMBIOS data from sysfs.
SMBIOS 2.8 present.

Handle 0x0001, DMI type 1, 27 bytes System Information Manufacturer: Micro-Star International Co., Ltd. Product Name: Z390 Gaming Trident X Plus (MS-B926) Version: 2.0 Serial Number: MSB926JAS0802110 UUID: 9bfb0150-f779-1e43-883a-61d00ae957a3 Wake-up Type: Power Switch SKU Number: B926.B Family: Desktop

Handle 0x0022, DMI type 12, 5 bytes System Configuration Options Option 1: Default string

Handle 0x0023, DMI type 32, 20 bytes System Boot Information Status: No errors detected

See also How do I find out my motherboard model?

0

To have a lot of info about your hardware use inxi -Fxc
If you don't have inxi install it with sudo apt install inxi see inxi help for more detailed infos