English | 简体中文 | 繁體中文 | Русский язык | Français | Español | Português | Deutsch | 日本語 | 한국어 | Italiano | بالعربية

Linux depmod Command

Linux Command大全

The Linux depmod command is used to analyze the dependencies of loadable modules.

The depmod command (dependent module) can detect the dependencies of modules for use by modprobe when installing modules.

Syntax

depmod [-adeisvV][-m <file>][--help][Module Name]

Parameter Description:

  • -a or--all  Analyze All Available Modules.
  • -d or debug  Execute in Debug Mode.
  • -e  Output Unreferenced Symbols.
  • -i  Do Not Check the Version of the Symbol Table.
  • -m<file> or system-map<file>  Use the Specified Symbol Table File.
  • -s or--system-log  Record Errors in System Logs.
  • -v or--verbose  Display Detailed Information During Execution.
  • -V or--version  Display Version Information.
  • --help  Display Help.

Online Examples

Display Available Modules

# depmod -a //Display Available Modules

Linux Command大全