Command that show hardware devices and associated s/w driver

Asked by William Pabon

Hi:
Is there a CLI command that would show a list of the hardware devices recognized by the OS (like lshw) and the s/w driver that the system assigns to it? If there is no driver, it should also tell it. Thanks.

Question information

Language:
English Edit question
Status:
Solved
For:
Ubuntu Edit question
Assignee:
No assignee Edit question
Solved by:
actionparsnip
Solved:
Last query:
Last reply:
Revision history for this message
Best actionparsnip (andrew-woodhead666) said :
#1

sudo lshw

will show the drive, look for "driver=" in the output

You can make it more intelligent with:

sudo lshw | egrep '\*\-|desctiption|product|driver' | grep -v bank

There is also lshw-gtk which is a GUI version. May be more useful too

Revision history for this message
William Pabon (williepabon) said :
#2

Thanks actionparsnip, that solved my question.