如何为 Dell Vostro 3460/3560 安装 BCM43142 无线驱动程序?

如何为 Dell Vostro 3460/3560 安装 BCM43142 无线驱动程序?

我有一台戴尔 Vostro 3460,它配备了新的 Broadcom 43142 混合无线/蓝牙芯片。专有驱动程序 ( wl) 和b43驱动程序都不支持此功能。

lspci -nn给我

01:00.0 Network controller [0280]: Broadcom Corporation Device [14e4:4365] (rev 01)
02:00.0 Ethernet controller [0200]: Atheros Communications Inc. AR8161 Gigabit Ethernet [1969:1091] (rev 10)

我设法1969:1091安装compat-wireless 的 alx,但找不到任何替代方案博通 4365...

你们知道这个控制器的驱动程序吗?我正在认真考虑买一张兼容的 USB 卡?

答案1

12.04

此驱动程序仅官方提供戴尔提供的 Vostro 3460。

然而,根据本论坛主题中提供的说明和 Vostro 3560 的 Dell deb,我创建了一个修改过的 DEB 文件,用于编译和安装驱动程序12.04(参见 11.10 链接的线程)。

首先,打开终端并逐行粘贴来安装先决条件:

sudo apt-get 安装 linux-headers$(uname -r | grep -Po "\-[az].*")
sudo apt-get 安装 build-essential dkms

请从 Dropbox 下载适当的 DEB 文件:

打开终端,并使用 安装它sudo dpkg -i

希望它有效!

编辑:12.04 现在有一个更新的bcmwl-kernel-source软件包,据说支持 BCM43142。错误#923809,评论 15

答案2

12.10

请使用终端命令验证您的 pci.id:

    lspci -nn

是 14e4:4365 吗?我不确定在 32 位系统中是否可行。如果您有 64 位系统和我提到的设备,那么我建议使用此包:http://jas.gemnetworks.com/debian/pool/main/w/wireless-bcm43142/wireless-bcm43142-dkms_6.20.55.19-1_amd64.deb

首先安装必备软件:

    sudo apt-get install linux-headers-generic build-essential dkms

然后使用以下命令安装该包:

    cd Desktop   <--or wherever you downloaded the deb
    sudo dpkg -i wire*.deb
    sudo modprobe wl

答案3

我尝试使用以下方法在 Ubuntu/Xubuntu 12.04(64 位)Linux 中使用 Dell Vostro 3500 安装 Broadcom 无线驱动程序。

首先检查你的无线芯片组型号,

lspci | grep Network

安装以下先决条件,

sudo apt-get install linux-headers-generic build-essential dkms

下载以下软件包并安装,

https://drive.google.com/file/d/0B6E3iEzJp74uSGZjVDF2YnM5eFE/view

打开以下文件:

gedit /etc/modprobe.d/blacklist.conf

添加以下行:

blacklist b43
blacklist b43legacy
blacklist bcma
blacklist ndiswrapper

注释掉下面这一行,

# blacklist bcm43xx

重新启动笔记本电脑并检查无线是否正常工作。

相关内容