For my wireless adapter (inside my computer) to enable it, I run modprobe b43 and that turns it on. But, when I reboot it goes back to no device. So, how do I make this totally permanent?
Asked
Active
Viewed 4.2k times
1 Answers
23
Add b43 to /etc/modules file. It should work (You can add it by running the following command)
echo b43 | sudo tee -a /etc/modules
Miguel Mota
- 103
- 5
Manula Waidyanatha
- 8,465
- 1
- 21
- 20
-
4That's not ubuntu-like, a sudo of this will give "permission denied". Use `sudoedit /etc/modules` – Joce Oct 15 '15 at 11:02
-
2Alternative sudo version: `echo "b43" | sudo tee -a /etc/modules` – webwurst Aug 19 '18 at 16:30