Created
June 10, 2020 08:59
-
-
Save aknik/8c7a38ecade1d0ebbc8dd7f931c8f46e to your computer and use it in GitHub Desktop.
To blacklist the module of your wireless card:
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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