Created
July 22, 2014 18:57
-
-
Save glombard/18a7ea331cfc93aff17b to your computer and use it in GitHub Desktop.
Install wifi drivers for Ubuntu / Lubuntu 14.04 on Acer Aspire 5755G (Broadcom BCM43227 network controller)
This file contains 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
# Determine wireless device model (manufacturer 14e4 for Broadcom): | |
lspci -vvnn | grep 14e4 | |
# Install Broadcom STA driver for BCM43227: | |
sudo apt-get update | |
sudo apt-get install --reinstall linux-headers-generic build-essential dkms bcmwl-kernel-source | |
sudo modprobe -r b43 ssb wl brcmfmac brcmsmac bcma | |
sudo modprobe wl | |
# Connect (press Fn+F3 to enable wifi if necessary first): | |
sudo ifconfig wlan0 up | |
sudo iwlist wlan0 scanning | |
sudo iwconfig wlan0 essid MYSSID key s:MyWifiPwd | |
sudo dhclient wlan0 | |
# Troubleshooting commands: | |
iwconfig | |
nm-tool | |
rfkill list | |
sudo lshw -C network |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Read the following:
https://help.ubuntu.com/community/WifiDocs/Driver/bcm43xx