modprobe
Add or remove modules from the Linux kernel. More information: <https://manned.org/modprobe>.
Install
- All systems
-
curl cmd.cat/modprobe.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/modprobe
- Docker
-
docker run cmd.cat/modprobe modprobe
powered by Commando
Add or remove modules from the Linux kernel. More information: <https://manned.org/modprobe>.
-
Pretend to load a module into the kernel, but don't actually do it:
sudo modprobe --dry-run module_name
-
Load a module into the kernel:
sudo modprobe module_name
-
Remove a module from the kernel:
sudo modprobe --remove module_name
-
Remove a module and those that depend on it from the kernel:
sudo modprobe --remove-dependencies module_name
-
Show a kernel module's dependencies:
sudo modprobe --show-depends module_name
© tl;dr; authors and contributors