rmmod
Remove modules from the Linux kernel. More information: <https://manned.org/rmmod>.
Install
- All systems
-
curl cmd.cat/rmmod.sh
- Debian
-
apt-get install kmod
- Ubuntu
-
apt-get install kmod
- Alpine
-
apk add kmod
- Arch Linux
-
pacman -S kmod
- Kali Linux
-
apt-get install kmod
- CentOS
-
yum install kmod
- Fedora
-
dnf install kmod
- Windows (WSL2)
-
sudo apt-get update
sudo apt-get install kmod
- Raspbian
-
apt-get install kmod
- Dockerfile
- dockerfile.run/rmmod
- Docker
-
docker run cmd.cat/rmmod rmmod
powered by Commando
Remove modules from the Linux kernel. More information: <https://manned.org/rmmod>.
-
Remove a module from the kernel:
sudo rmmod module_name
-
Remove a module from the kernel and display verbose information:
sudo rmmod --verbose module_name
-
Remove a module from the kernel and send errors to syslog instead of `stderr`:
sudo rmmod --syslog module_name
-
Display help:
rmmod --help
-
Display version:
rmmod --version
© tl;dr; authors and contributors