10-09-2014, 08:39 PM
Try one more thing.
Maybe you card is supported by more than one driver, and they are conflicting.
First unload all the drivers.
Then loasd this driver:
Wait a few seconds and try to make a connection. If that works you'll have to blacklist the other drivers.
If that doesn't work unload this driver and try this one.
Unload, then try next driver.
Here is how to blacklist a driver
Replace "drivername" with the ones you don't want to use
You will have to do it twice because you need 2 lines in the /etc/modprobe.d/blacklist-broadcom-wireless.conf
One for each blacklisted driver.
Example:
Update the initramfs after any changes to the blacklist files:
Reboot:
Maybe you card is supported by more than one driver, and they are conflicting.
First unload all the drivers.
Code:
sudo modprobe -r b43 wl brcmsmac
Code:
sudo modprobe b43
If that doesn't work unload this driver and try this one.
Code:
sudo modprobe brcmsmac
Code:
sudo modprobe wl
Here is how to blacklist a driver
Code:
echo "blacklist drivername" | sudo tee -a /etc/modprobe.d/blacklist-broadcom-wireless.conf
You will have to do it twice because you need 2 lines in the /etc/modprobe.d/blacklist-broadcom-wireless.conf
One for each blacklisted driver.
Example:
Code:
echo "blacklist wl" | sudo tee -a /etc/modprobe.d/blacklist-broadcom-wireless.conf
Code:
echo "blacklist brcmsmac" | sudo tee -a /etc/modprobe.d/blacklist-broadcom-wireless.conf
Code:
sudo update-initramfs -u
Code:
sudo reboot