Latest web development tutorials

Linux modprobe command

Linux command Daquan Linux command Daquan

Linux modprobe command for automatic processing loadable module.

modprobe to load the specified individual module, or load a set of dependent modules. modprobe depmod based dependencies generated, decide which modules to load. If an error occurs during loading, unloading modules will be in modprobe entire group.

grammar

modprobe [-acdlrtvV][--help][模块文件][符号名称 = 符号值]

Parameters:

  • -a or --all load all modules.
  • -c or --show-conf display setting information of all modules.
  • -d or --debug Use debug mode.
  • -l or --list displays available modules.
  • -r Or --remove module when idle, automatically unloaded.
  • -t or --type specified module type.
  • Display detailed information about the implementation -v or --verbose.
  • -V Or --version display version information.
  • -help Display help.

Examples

Install floppy drive modules:

[[email protected] ~]# modprobe -v floppy 

Uninstall floppy drive modules:

[[email protected] ~]# modprobe -v -r floppy 

Linux command Daquan Linux command Daquan