Jump to content

List of installed modules [solved]


Recommended Posts

The lsmod command will only give you a list of the loaded modules at that time. If you want a list of all the 'installed' modules on your Mandriva system, and their location: As root do

updatedb

then do

locate -e ko.gz

Link to comment
Share on other sites

As root do
updatedb

then do

locate -e ko.gz

As I understand it this would list all modules of all installed kernels. So my suggestion is to check your version in use, then go to the specific directory and list modules:

uname -a
cd /lib/modules/<kernel-version>
ls -al | more

Link to comment
Share on other sites

As I understand it this would list all modules of all installed kernels. So my suggestion is to check your version in use, then go to the specific directory and list modules:

uname -a
cd /lib/modules/<kernel-version>
ls -al | more

That's a good point! I always delete my old kernels, but if you didn't that could be a very large list!

 

Thanks for pointing that out. :)

 

However, that command does not enter the directories and list them, or find any modules in /var/lib/dkms.

 

I will offer a compromise: do

uname -r

then

locate -e ko.gz |grep (enter uname -r output here)

replacing (enter uname -r output here) with the real output.

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

×
×
  • Create New...