Macbook air 2014 13" 无线驱动程序

Macbook air 2014 13" 无线驱动程序

刚刚在 MacBook Air 上安装了 ubuntu,但似乎找不到真正完成安装的 bcmwl。我无法通过以太网连接,所以这不是一个选项。

有人能给我提供来源或修复此问题的步骤吗?

一些细节:BCM4360 802.11ac [14e4:43a0] (rev 03)

答案1

我也有同样的问题。Mac air 6.2(2013 年中)Ubuntu 14.04 LTS

眼镜:(lspci -vnn | grep -i 网)

03:00.0 Network controller [0280]: Broadcom Corporation BCM4360 802.11ac Wireless Network Adapter [14e4:43a0] (rev 03)

博通驱动程序不适用于该无线适配器。

我通过安装 wl 驱动程序解决了这个问题。并禁用了一些其他模块

  1. 获取驱动程序包(带以太网)

    vim /etc/apt/sources.list
    

    添加以下几行:

    # Debian 7 "Wheezy"
    deb http://http.debian.net/debian/ wheezy main contrib non-free
    

    保存文件

    或者只需执行:

    apt-add-repository -y "deb http://http.debian.net/debian/ wheezy main contrib non-free"
    

    然后,获取新的包:

    apt-get update
    apt-get install linux-headers-$(uname -r|sed 's,[^-]*-[^-]*-,,') broadcom-sta-dkms
    

    或者没有以太网

    你不得不从源代码编译

  2. 卸载冲突的驱动程序

    modprobe -r b44 b43 b43legacy ssb brcmsmac
    
  3. 加载wl模块

    modprobe wl
    

经过几个小时寻找答案后,我终于找到了答案。

根据这个答案:
https://unix.stackexchange.com/questions/175810/how-to-install-broadcom-bcm4360-on-debian-on-macbook-pro

相关内容