I will like to see my hardware specs in my ubuntu desktop. Any ideas?
Asked
Active
Viewed 8,452 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
- 98,245
5
Try HardInfo

(source: hardinfo.org)
sudo apt-get update && sudo apt-get install hardinfo && hardinfo
Glorfindel
- 1,213
Qwerty
- 1,504
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,563
1
Try out HardwareLiSter. It can provide output on the command line, as HTML, and also has a GUI app.
powdahound
- 4,505
1
This question has been discussed. There are some additional answers here: How to find out details about hardware on the Linux machine?