Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
可能重复: modinfo() 等效 INSIDE 内核?
我需要检查是否在 e1000 网络驱动程序中加载了特定模块( abc.ko )。如果 abc.ko 未加载,则必须加载。我们如何在驱动程序代码中实现这一点?
您可以lsmod用于检查加载的模组,以及modinfo e1000更多的驱动程序信息。要加载模块,请使用modprobe (module)和 for unload modprobe -r (module)
lsmod
modinfo e1000
modprobe (module)
modprobe -r (module)