2

Apart from lspci or dmesg in terminal, is there a tool with more of a GUI to list the hardware/software in my system in greater detail?

3 Answers3

3

Maybe package hardinfo is that you are looking for. It has a gui and gives detailed infos . Sorry for german text.

hardinfo

nobody
  • 5,792
2

There is lshw-gtk that will show all hardware in GUI.

You can install it by

sudo apt install lshw-gtk

If you can do it without GUI, you can simply run lshw in a terminal and see the same information.

Pilot6
  • 92,041
1

Hardware & software documentation script, one line using && \ to make as one entry

https://github.com/UbuntuForums/system-info

wget -N -t 5 -T 10 https://github.com/UbuntuForums/system-info/raw/main/system-info && \
chmod +x system-info && \
./system-info

And lots more detail on Wireless:

wget -N -t 5 -T 10 https://github.com/UbuntuForums/wireless-info/raw/master/wireless-info && \
chmod +x wireless-info && \
./wireless-info
oldfred
  • 12,583