Loading Linux Kernel Modules

Xebix

Gawd
Joined
Jun 29, 2001
Messages
905
When loading a kernel module under linux, what is the difference in insmod foo and modprobe foo?
 
Well I don't know all the specifics about it, but I do know that insmod will load a single module and modprobe will load that module plus anything it depends on. At least that's how it's worked with me.
 
Yup, it's almost all about the dependancy checking. It's just a slightly higher-level interface to the kernel modules.
 
Back
Top