0

I am having trouble with the Wifi drivers on my new instillation of Ubuntu. This is my first time using Linux, but I am familiar with Unix from OS X. I have replaced OS X with Ubuntu on an older model Macintosh. I have done a little research on the problem yielding no solutions.

Using sudo lshw -C network, I can gather that I have a BCM4322 card (Wireless LAN Controller). But when I try to get the PCI ID with lspci -mn -d 14e4:, I get "0280" "14e4" "432b" -r01 "106b" "008e", which I don't understand.

So how can I acquire the appropriate drivers?

It may also be worth mentioning that there are no wireless extensions when using the command iwconfig.

Thanks for taking the time to read and answer, AidoP

AidoP
  • 3

2 Answers2

0

Install the package firmware-b43-installer:

sudo apt-get install firmware-b43-installer

You will need to enable the multiverse repository to be able to do this. If you chose to install 3rd party software when installing Ubuntu, then it should already be enabled. If not, see this question.

You may need to restart your computer afterwards for the card to start working.

0

Please see: Installing Broadcom Wireless Drivers The correct driver for your device 14e4:432b is bcmwl-kernel-source:

sudo apt-get install bcmwl-kernel-source

Reboot.

chili555
  • 61,330