Created
October 21, 2018 06:05
-
-
Save kcchien/47731e3ab1283abc01b60180a3ba75b2 to your computer and use it in GitHub Desktop.
Elementary os 安裝在 Macbook 上找不到無線網路的解法
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
# Reference http://www.linuxlinx.com/2016/08/fix-no-wireless-on-macbook-after.html | |
# Removing bcmwl-kernel-source package, then reboot. | |
sudo apt-get remove --purge bcmwl-kernel-source | |
sudo reboot | |
# Installing new broadcom firmware. | |
sudo apt-get install firmware-b43-installer | |
# Reaload package. | |
sudo modprobe -r b43 | |
sudo modprobe b43 | |
# Reboot once again and next after booting you should have BroadCom 4331 Wireless drivers installed and ready to use. | |
sudo reboot |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment