Skip to content

Instantly share code, notes, and snippets.

@aknik
Created June 10, 2020 08:59
Show Gist options
  • Save aknik/8c7a38ecade1d0ebbc8dd7f931c8f46e to your computer and use it in GitHub Desktop.
Save aknik/8c7a38ecade1d0ebbc8dd7f931c8f46e to your computer and use it in GitHub Desktop.
To blacklist the module of your wireless card:
To blacklist the module of your wireless card:
sudo vi /etc/modprobe.d/blacklist.conf (or create a custom one)
Uncomment the module name that has a # in the beginning of the line:
blacklist eth1394
Save, run sudo update-initramfs -u and reboot
To remove a module manually without rebooting:
sudo modprobe -r eth1394
Looses effect after reboot.
To load the module:
sudo modprobe eth1394
To see modules loaded:
sudo lsmod
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment