I will like to see my hardware specs in my ubuntu desktop. Any ideas?
Asked
Active
Viewed 8,376 times
5 Answers
5
dmidecode
is my go-to tool for finding out what hardware's on a machine. If you're just after basic info, lspci
touches most of the high notes.

womble
- 96,255
- 29
- 175
- 230
5
Try HardInfo
(source: hardinfo.org)
sudo apt-get update && sudo apt-get install hardinfo && hardinfo

Glorfindel
- 1,213
- 4
- 15
- 22

Qwerty
- 1,504
- 2
- 15
- 24
2
sudo apt-get install lshw && sudo lshw
Or, if you want a graphical display:
sudo apt-get install lshw-gtk && sudo lshw -X

Joe
- 1,545
- 1
- 10
- 15
1
Try out HardwareLiSter. It can provide output on the command line, as HTML, and also has a GUI app.

Garret Heaton
- 4,325
- 3
- 18
- 10
1
This question has been discussed. There are some additional answers here: How to find out details about hardware on the Linux machine?