Linux Comm Depmod
# Linux depmod Command
[ Linux Command Manual](#)
The Linux depmod command is used to analyze the dependencies of loadable modules.
depmod (depend module) can detect module dependencies for use by modprobe when installing modules.
### Syntax
depmod
**Parameter Description**:
* -a or --all: Analyze all available modules.
* -d or --debug: Execute in debug mode.
* -e: Output symbols that cannot be referenced.
* -i: Do not check the version of the symbol table.
* -m or --system-map: Use the specified symbol table file.
* -s or --system-log: Log errors in the system log.
* -v or --verbose: Display detailed information during execution.
* -V or --version: Display version information.
* --help: Display help.
### Example
Display available modules
# depmod -a //Display available modules
[ Linux Command Manual](#)
YouTip