tldr/pages/linux/rmmod.md

25 lines
464 B
Markdown
Raw Normal View History

2021-10-21 03:32:47 +01:00
# rmmod
> Remove modules from the Linux kernel.
> More information: <https://manned.org/rmmod>.
- Remove a module from the kernel:
2022-03-19 18:28:29 +00:00
`sudo rmmod {{module_name}}`
2021-10-21 03:32:47 +01:00
- Remove a module from the kernel and display verbose information:
2022-03-19 18:28:29 +00:00
`sudo rmmod --verbose {{module_name}}`
2021-10-21 03:32:47 +01:00
- Remove a module from the kernel and send errors to syslog instead of `stderr`:
2021-10-21 03:32:47 +01:00
2022-03-19 18:28:29 +00:00
`sudo rmmod --syslog {{module_name}}`
2021-10-21 03:32:47 +01:00
- Display help:
2022-03-19 18:28:29 +00:00
`rmmod --help`
2021-10-21 03:32:47 +01:00
- Display version:
2022-03-19 18:28:29 +00:00
`rmmod --version`