admin 管理员组文章数量: 1086019
modprobe命令介绍
1命令介绍编辑
简介
Linux命令:modprobe 。 功能说明:自动处理可载入模块。 语 法:modprobe [-acdlrtvV][--help][模块文件][符号名称 = 符号值]。 补充说明:modprobe可载入指定的个别模块,或是载入一组相依的模块。modprobe会根据 depmod所产生的相依关系,决定要载入哪些模块。若在载入过程中发生错误,在modprobe会 卸载整组的模块。内容
1、modprobe 命令是根据 depmod -a的输出/lib/modules/version/modules.dep来加载全部的所需要模块。 2、删除模块的命令是:modprobe -r filename。 3、系统启动后,正常工作的模块都在/proc/modules文件中列出。使用lsmod命令也可显示相同内容。 4、在 内核中有一个“Automatic kernel module loading"功能被编译到了内核中。当用户尝试打开某类型的文件时, 内核会根据需要尝试加载相应的模块。/etc/modules.conf或 /etc/modprobe.conf文件是一个自动处理 内核模块的控制文件。2相关信息编辑
参数
-a或--all 载入全部的模块。 -c或--show-conf 显示所有模块的设置信息。 -d或--debug 使用排错模式。 -l或--list 显示可用的模块。 -r或--remove 模块闲置不用时,即自动 卸载模块。 -t或--type 指定模块类型。 -v或--verbose 执行时显示详细的信息。 -V或--version 显示版本信息。 -help 显示帮助。操作
insmod 与 modprobe 都是载入 kernel module,不过一般差别于 modprobe 能够处理 module 载入的相依问题。 比方你要载入 a module,但是 a module 要求系统先载入 b module 时,直接用 insmod 挂入通常都会出现错误讯息,不过 modprobe 倒是能够知道先载入 b module 后才载入 a module,如此相依性就会满足。 不过 modprobe 并不是大神,不会厉害到知道 module 之间的相依性为何,该程式是读取 /lib/modules/2.6.xx/modules.dep 档案得知相依性的。而该档案是透过 depmod 程式所建立。 The modprobe and depmod utilities are intended to make a Linux modular kernel more manageable for all users, administrators and distribution maintainers. Modprobe uses a "Makefile"-like dependency file, created by depmod, to automatically load the relevant module(s) from the set of modules available in predefined directory trees. Modprobe is used to load a single module, a stack of dependent modules, or all modules that are marked with a specified tag. Modprobewill automatically load all base modules needed in a module stack, as described by the dependency file modules.dep. If the loading of one of these modules fails, the whole current stack of modules loaded in the current session will be unloaded automatically. Modprobe has two ways of loading modules. One way (the probe mode) will try to load a module out of a list (defined by pattern). Modprobe stops loading as soon as one module loads successfully. This could be used to autoload one Ethernet driver out of a list. The other way modprobe can be used is to load all modules from a list. With the option -r, modprobe will automatically unload a stack of modules, similar to the way rmmod -r does. Note that using just modprobe -r will clean up unused autoloaded modules and also perform the pre-and post-remove commands in the configuration file /etc/modules, /etc/modprobe.d/*. Combining the options -l and -t lists all available modules of a certain type. Option -c will print the currently used configuration (default + configuration file). To do autoclean every 2 minutes: '''/2 ''' * ''' ''' test -f /proc/modules && /sbin/modprobe -r 词条标签:本文标签: modprobe命令介绍
版权声明:本文标题:modprobe命令介绍 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.roclinux.cn/b/1686558703a10158.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论