I will like to see my hardware specs in my ubuntu desktop. Any ideas?
Asked
Active
Viewed 8,339 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
- 95,029
- 29
- 173
- 228
5
Try HardInfo

(source: hardinfo.org)
sudo apt-get update && sudo apt-get install hardinfo && hardinfo
Glorfindel
- 1,213
- 3
- 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,535
- 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,255
- 3
- 17
- 10
1
This question has been discussed. There are some additional answers here: How to find out details about hardware on the Linux machine?