mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-01-30 02:41:24 +00:00
18 lines
391 B
Plaintext
18 lines
391 B
Plaintext
---
|
|
syntax: markdown
|
|
tags: [tldr, linux]
|
|
source: https://github.com/tldr-pages/tldr.git
|
|
---
|
|
# modinfo
|
|
|
|
> Extract information about a Linux kernel module.
|
|
> More information: <https://manned.org/modinfo>.
|
|
|
|
- List all attributes of a kernel module:
|
|
|
|
`modinfo {{kernel_module}}`
|
|
|
|
- List the specified attribute only:
|
|
|
|
`modinfo -F {{author|description|license|parm|filename}} {{kernel_module}}`
|