1

I installed Ubuntu on my late 2012 Mac mini, but now I can't find/install the correct WiFi/Ethernet driver. Does anyone have a link to the correct driver and how to install it? Thanks!

The network devices on this machine are:

  • Broadcom Corporation Device [14e4:1686] (rev 01) with manually compiled kernel driver tg3
  • Broadcom Corporation BCM4331 [14e4:4331] (rev 02) with kernel driver bcma-pci-bridge
l0b0
  • 8,819
plays2
  • 11
  • 3
    Please edit your question including the output from the following commands: lspci -nnk | grep -i net -A3 and iwconfig. – BuZZ-dEE Feb 23 '13 at 17:45
  • I have the same problem: http://askubuntu.com/questions/290658/no-network-interfaces-detected-when-installing-ubuntu-server-on-mac-mini – Jonas Jun 29 '13 at 12:39

1 Answers1

0

What more or less works is

sudo apt-get install linux-firmware-nonfree

Alternatively, you can install the tg3 drivers and b43 drivers to get them working. I have attempted to document what I did here.

Lord Loh.
  • 883