Celeb Glow
updates | March 19, 2026

find list of installed device drivers ubuntu

How can I find out list of all device drivers installed in my ubuntu. I need list of device drivers not kernel drivers.

3

1 Answer

Linux (and Ubuntu as well) doesn't have separate entity as "device drivers", Linux has kernel modules which could be called "drivers" for real or virtual hardware depending on their functionality.

Use lsmod or cat /proc/modules to see list of loaded kernel modules. Also you can see list of all available (installed) kernel modules in system using:

ls -R /lib/modules/`uname -r`/kernel/

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy