内核模块管理工具
Posted dissipate
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了内核模块管理工具相关的知识,希望对你有一定的参考价值。
lsmod:内容来自/proc/modules
modinfo:show information about linux kernel module
modprobe:
- modprobe --show-depends ext4 显示ext4内核模块的依赖关系
- --dry-run 测试目的
- --show-config 显示内核模块的所有配置
- --force Force module insertion or removal
- --remove 移除模块
- modprobe 进行操作,需要依靠/usr/lib/modules/$(uname -r)/modules.dep.bin此二进制文件为依据,此文件是由modules.dep生成,便于检索
depmod:
depmod will output a dependency list suitable for the modprobe utility.
- --all Probe all modules default
- --quick Only does the work if there‘s a new module
- --show write the dependencies to stdout 可用于查找模块
以上是关于内核模块管理工具的主要内容,如果未能解决你的问题,请参考以下文章
Linux 内核Linux 内核特性 ( 组织形式 | 进程调度 | 内核线程 | 多平台虚拟内存管理 | 虚拟文件系统 | 内核模块机制 | 定制系统调用 | 网络模块架构 )
Linux 内核 内存管理内存管理架构 ③ ( Linux 内核中的内存管理模块 | 页分配器 | 不连续页分配器 | 内存控制组 | 硬件设备内存管理 | MMU | 页表缓存 | 高速缓存 )