Module的安装
insmod
或者
modprobe
It differs in that it will look at the module to be loaded to see
whether it references any symbols that are not currently defined in the kernel. If any
such references are found, modprobe looks for other modules in the current module
search path that define the relevant symbols. When modprobe finds those modules
(which are needed by the module being loaded), it loads them into the kernel as well.
If you use insmod in this situation instead, the command fails with an “unresolved
symbols” message left in the system logfile.
Module的卸载
rmmod
查询已加载的模块
lsmod
/proc/modules /sys/module
详细信息
modinfo