Latest web development tutorials

Linux depmod command

Linux command Daquan Linux command Daquan

Linux depmod command is used to analyze a loadable module dependencies.

Dependence depmod (depend module) detects module modprobe for use when installing the module.

grammar

depmod [-adeisvV][-m <文件>][--help][模块名称]

Parameter Description:

  • -a or --all analysis of all available modules.
  • -d debug execution or debugging mode.
  • -e output can not reference symbols.
  • -i do not check the version of the symbol table.
  • -m <file> or system-map <file> with the specified symbol table file.
  • -s --system-log or log an error in the system log.
  • Display detailed information about the implementation -v or --verbose.
  • -V Or --version display version information.
  • --help displays help.

Examples

Displays available modules

# depmod -a //显示可用模块

Linux command Daquan Linux command Daquan