mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-01-26 11:33:59 +00:00
19 lines
437 B
Plaintext
19 lines
437 B
Plaintext
---
|
|
syntax: markdown
|
|
tags: [tldr, linux]
|
|
source: https://github.com/tldr-pages/tldr.git
|
|
---
|
|
# modinfo
|
|
|
|
> Extract information about a Linux kernel module.
|
|
> See also: `kmod`.
|
|
> More information: <https://manned.org/modinfo>.
|
|
|
|
- List all attributes of a kernel module:
|
|
|
|
`modinfo {{kernel_module}}`
|
|
|
|
- List the specified attribute only:
|
|
|
|
`modinfo {{[-F|--field]}} {{author|description|license|parm|filename|version|...}} {{kernel_module}}`
|