Linux - NewbieThis Linux forum is for members that are new to Linux.
Just starting out and have a question?
If it is not in the man pages or the how-to's this is the place!
Notices
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
Get a virtual cloud desktop with the Linux distro that you want in less than five minutes with Shells! With over 10 pre-installed distros to choose from, the worry-free installation life is here! Whether you are a digital nomad or just looking for flexibility, Shells can put your Linux machine on the device that you want to use.
Exclusive for LQ members, get up to 45% off per month. Click here for more info.
I am going to have my LPI 102 exam Saturday. I am confused about insmod and modprobe . I find some of threads said that modprobe execute insmod and load the required modules automatically. Is it right? And when should insmod and modprobe use files like /etc/modules.conf , /etc/modprobe.conf and the path MODPATH,MODULECONF?
thanks
'insmod' will only inert a module into the kernel. It has no options, no diagnostic feedback, etc. It's a simple specialized tool.
'modprobe' is much more sophisticated: it can be verbose, can move modules in and out of the kernel and has some clever option combinations for those have to deal with kernels and modules.
I believe that the difference is that modprobe will cause a kernel module to be loaded from the installed kernel from the /lib/modules directory, whereas insmod will load any particular .ko file you point it at, whether in /lib/modules or not. insmod, combined with rmmod, is useful when working on a module; allowing you to recompile just the module and test it, without having to do a whole kernel compile, or hack at your /lib/modules files, potentially making your kernel unbootable.
When I see some things that use "insmod" they all seem to give the full path name to the module, while modprobe just has the name of the module without the ".ko". Oh, yeah, and modprobe will complain about dependencies!
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.