Will modules installed by insmod command persist after rebooting?

Posted by apache on Server Fault See other posts from Server Fault or by apache
Published on 2010-06-02T15:45:10Z Indexed on 2010/06/02 15:56 UTC
Read the original article Hit count: 101

Filed under:
|

There is how the book I'm reading describe the insmod utility:

The program loads the module code and data into the kernel, which, in turn, performs a function similar to that of ld, in that it links any unresolved symbol in the module to the symbol table of the kernel. Unlike the linker, however, the kernel doesn’t modify the module’s disk file, but rather an in-memory copy.

It looks like it won't persist since it's in-memory, but I'm not sure.

© Server Fault or respective owner

Related posts about modules

Related posts about linux-kernel