0

Wired connection works. Ran: sudo apt-get install linux-firmware-nonfree, then restarted - still no wifi.

paul@paul-TravelMate-5520:~$ lspci -nn | grep 0280 
05:00.0 Network controller [0280]: Broadcom Corporation BCM4311 802.11b/g WLAN [14e4:4311] (rev 01)
  • Please edit your question to add the result of this terminal command: lspci -nn | grep 0280 Thanks. – chili555 Jan 07 '15 at 01:04

1 Answers1

1

The package linux-firmware-nonfree doesn't correctly install the required firmware. The correct method is:

sudo apt-get update
sudo apt-get purge bcmwl-kernel-source
sudo apt-get install firmware-b43-installer

Please see: Installing Broadcom Wireless Drivers

chili555
  • 60,188