Broadcom Corp. BCM4313 Wirelss 未在 Ubuntu 12.10 中检测到

Broadcom Corp. BCM4313 Wirelss 未在 Ubuntu 12.10 中检测到

我将 Toshiba PORTÉGÉ 从 Precise(12.04) 更新为 Quantal (12.10)。更新至 Precise 后,无线设备运行正常。但更新后,网络管理器检测不到无线设备。

命令lspci内容如下:

02:00.0 Network controller [0280]: Broadcom Corporation BCM4313 802.11b/g/n Wireless LAN 
    Controller [14e4:4727] (rev 01)
            Subsystem: Askey Computer Corp. Device [144f:7175]
            Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
            Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
            Latency: 0, Cache Line Size: 64 bytes
            Interrupt: pin A routed to IRQ 3
            Region 0: Memory at d4500000 (64-bit, non-prefetchable) [size=16K]
            Capabilities: <access denied>
            Kernel modules: bcma

以太网连接正常。我尝试安装,firmware-b43-installer但它显示:

$ sudo apt-get install firmware-b43-installer
...
Unsuported device(s) found: PCI id 14e4:4727
Aborting

更多相关信息由以下人士提供lshw

    root@caprica:~# sudo lshw -class network
  *-network               
       descripción: Ethernet interface
       producto: 82577LC Gigabit Network Connection
       fabricante: Intel Corporation
       id físico: 19
       información del bus: pci@0000:00:19.0
       nombre lógico: eth0
       versión: 06
       serie: e8:9d:87:ed:f4:2a
       tamaño: 1Gbit/s
       capacidad: 1Gbit/s
       anchura: 32 bits
       reloj: 33MHz
       capacidades: pm msi bus_master cap_list ethernet physical tp 10bt 10bt-fd 100bt 100bt-fd 1000bt-fd autonegotiation
       configuración: autonegotiation=on broadcast=yes driver=e1000e driverversion=2.0.0-k duplex=full firmware=0.12-6 ip=192.168.1.5 latency=0 link=yes multicast=yes port=twisted pair speed=1Gbit/s
       recursos: irq:41 memoria:d4700000-d471ffff memoria:d472a000-d472afff ioport:3020(size=32)
  *-network NO RECLAMADO
       descripción: Network controller
       producto: BCM4313 802.11b/g/n Wireless LAN Controller
       fabricante: Broadcom Corporation
       id físico: 0
       información del bus: pci@0000:02:00.0
       versión: 01
       anchura: 64 bits
       reloj: 33MHz
       capacidades: pm msi pciexpress bus_master cap_list
       configuración: latency=0
       recursos: memoria:d4500000-d4503fff

我也执行了这个,这是输出:

root@caprica:~# rfkill list all
0: Toshiba Bluetooth: Bluetooth
    Soft blocked: no
    Hard blocked: no
1: hci0: Bluetooth
    Soft blocked: no
    Hard blocked: no

我已经检查了模型http://linuxwireless.org/en/users/Drivers/b43

BCM4313 - chipset uses unsupported LCN PHY, we work on it

我已经在可视化环境中配置了私有驱动程序,Broadcom 802.11 Linux STA 无线驱动程序源来自bcmwl-kernel-source但也无法工作。

答案1

我认为 bcmwl-kernel-source 适用于您的设备。让我们再试一次:

sudo apt-get install linux-headers-generic
sudo apt-get install linux-headers-$(uname -r)
sudo apt-get install --reinstall bcmwl-kernel-source
sudo modprobe wl

一切已准备就绪。

答案2

从 12.x 升级到 13.04 时,旧的 bcm43 模块被列入黑名单,但是在我的 mac-mini 上,b43(免费驱动程序)已经被列入黑名单。

尤其是对于在 12.x 中使用过非免费驱动程序的人来说,这会成为一个问题,因为 b43 在 12.x 下也被列入黑名单。因此 - 我们有 2 个 bcm43 和 b43 都被列入黑名单,并且都无法工作。因此 - 检查 /etc/modprobe.d 目录中是否有任何 b43 和 bcm43 条目,并确保只有一个被列入黑名单。

YYMV - 但我发现非免费的 bcm43 可以提供更好的性能

相关内容