如何在linux中添加未在我当前内核中编译的内核模块

时间:2014-11-24 04:01:18

标签: linux linux-kernel centos7

我发现内核模块“ ceph ”和“ rbd ”在我的 centos 7 <中配置为"Y""M" / strong>通过查看 / boot / config-xxxx 文件。

Does any guys know what's the best way to add these modules back ?

我是否需要手动download内核源代码和configure这些模块为“Y / M”?
或者我只需要build有两个内核模块和add / lib64 / modules 吗?

1 个答案:

答案 0 :(得分:0)

首先,

  1. 我发现内核模块“ceph”和“rbd”配置为“Y”或“M”
  2. A kernel module is configured as either "Y" or "M". If you grep for the module under /boot/config it would be marked either of those.

      

    如果标记为“Y”,则模块已作为STATIC MODULE内置到内核中。您无需再次重建它。

         

    如果标记为“M”,则模块仍然构建,但作为DYNAMIC MODULE。您可以使用“$ lsmod”命令找到该模块,也可以在/ lib / modules中找到

    So, if you don't find your module listed under /boot/config*** only then you will have to consider building that module

    接下来,如果您没有找到列出的模块,那么您必须下载与PC上的版本对应的内核源代码,然后只编译这些模块并安装它们