How do I get detailed information about external hardware attached to my Ubuntu notebook?

Asked by oss_test_launchpad

I have an external WLAN USB stick attached to my notebook which has little information printed on it and I am looking for some nice GUI application which will give me hardware information about this USB stick.

Question information

Language:
English Edit question
Status:
Solved
For:
Ubuntu Edit question
Assignee:
No assignee Edit question
Solved by:
oss_test_launchpad
Solved:
Last query:
Last reply:
Revision history for this message
bixejo (bixo-bixejo) said :
#1

I cannot tell you too much about nice GUI applications, but if you want to see detailed info on your currently connected USB devices, you may try the following from a terminal:

sudo lsusb -v

It shall issue a rather long output, so you may want to redirect it to a text file and inspect it later by using some text editor like gedit:

sudo lsusb -v > usbdevices.txt

If you just want info on one device, you may be more specific when invoking lsusb. Use the following command:

man lsusb

to see the list of available options and their meaning.

Hope this helps,

--Bixejo

Revision history for this message
oss_test_launchpad (oss-test-launchpad) said :
#2

Thank you, this helped me a lot. Have a nice weekend.