1

I have recently installed Ubuntu 12.04 on the Windows partition of my Macbook Pro Model 8.1. Everything seemed to go smoothly during installation however as I am trying to connect to wireless internet, I have had no luck.

I have gone to the update manager and installed all of the updates that were ready on my first usage of Ubuntu. I have rebooted and there is still no sign of connectivity. I went to add additional drivers and there is one listed - 'Broadcom STA wireless driver.' When I go to activate this driver, I receive an error message that reads 'Sorry, installation of this driver failed. Please have a look at the log file for details: /var/log/jockey.log.'

After this I have tried removing Ubuntu and reinstalling it on my Windows partition. This led me to the same place.

The internet will connect when I use ethernet.

After using lspci -nn -d 14e4: I receive the following specifications.

 02:00.0 Ethernet controller [0200]: Broadcom Corporation NetXtreme BCM57765 
 Gigabit Ethernet PCIe [14e4:16b4] (rev 10)

 02:00.1 SD Host controller [0805]: Broadcom Corporation BCM57765/57785 
 SDXC/MMC Card Reader [14e4:16bc] (rev 10)

 03:00.0 Network controller [0280]: Broadcom Corporation BCM4331 
 802.11a/b/g/n [14e4:4331] (rev 02)

I have tried rebuilding the bcmwl-kernel-source using the command sudo apt-get purge bcmwl-kernel-source and then sudo apt-get install bcmwl-kernel-source. Yet, nothing. I receive a warning that says Warning: No support for locale: en_US.utf8. I am not sure if this information is pertinent to the overall task.

Thank you to anyone who might have suggestions. I am very new to Ubuntu and still trying to get used to the in's and out's of it. Thank you!

1 Answers1

1

It seems that Broadcom wireless strike again.

You said recently. What kernel does your installation use? Is it 3.8? If yes, install a 3.2 or 3.5 kernel series. There is a known issue with Broadcom STA wireless driver and the 3.8 kernel.

For 3.2:

sudo apt-get install linux-image-generic
sudo apt-get install linux-headers-generic

For 3.5:

sudo apt-get install linux-image-generic-lts-quantal
sudo apt-get install linux-headers-generic-lts-quantal

And then try the driver installation again, the chances are that it will succeed. You will need an active internet connection to perform these tasks (eg. wired).

Regards.

ergysdo
  • 1,039