我发现内核模块“ 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 吗?
答案 0 :(得分:0)
首先,
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上的版本对应的内核源代码,然后只编译这些模块并安装它们