1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages/linux/rmmod.md

26 lines
522 B
Markdown
Raw Normal View History

2021-10-20 23:32:47 -03:00
# rmmod
> Remove modules from the Linux kernel.
> See also: `kmod`, for other module management commands.
2021-10-20 23:32:47 -03:00
> More information: <https://manned.org/rmmod>.
- Remove a module from the kernel:
2022-03-19 11:28:29 -07:00
`sudo rmmod {{module_name}}`
2021-10-20 23:32:47 -03:00
- Remove a module from the kernel and display verbose information:
2022-03-19 11:28:29 -07:00
`sudo rmmod --verbose {{module_name}}`
2021-10-20 23:32:47 -03:00
- Remove a module from the kernel and send errors to syslog instead of `stderr`:
2021-10-20 23:32:47 -03:00
2022-03-19 11:28:29 -07:00
`sudo rmmod --syslog {{module_name}}`
2021-10-20 23:32:47 -03:00
- Display help:
2022-03-19 11:28:29 -07:00
`rmmod --help`
2021-10-20 23:32:47 -03:00
- Display version:
2022-03-19 11:28:29 -07:00
`rmmod --version`