在 Acer Aspire 5517 上安装了 lubuntu 14.04,无法连接无线

在 Acer Aspire 5517 上安装了 lubuntu 14.04,无法连接无线
$ iwconfig

lo        no wireless extensions.

eth0      no wireless extensions.

$ ifconfig -a

eth0      Link encap:Ethernet  HWaddr 70:5a:b6:08:b3:21  
          inet addr:192.168.1.25  Bcast:192.168.1.255  Mask:255.255.255.0
          inet6 addr: fe80::725a:b6ff:fe08:b321/64 Scope:Link
          UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
          RX packets:15337 errors:0 dropped:0 overruns:0 frame:0
          TX packets:11030 errors:0 dropped:0 overruns:0 carrier:5
          collisions:0 txqueuelen:1000 
          RX bytes:8673692 (8.6 MB)  TX bytes:1339434 (1.3 MB)

lo        Link encap:Local Loopback  
          inet addr:127.0.0.1  Mask:255.0.0.0
          inet6 addr: ::1/128 Scope:Host
          UP LOOPBACK RUNNING  MTU:65536  Metric:1
          RX packets:8288 errors:0 dropped:0 overruns:0 frame:0
          TX packets:8288 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:0 
          RX bytes:787813 (787.8 KB)  TX bytes:787813 (787.8 KB)

lspci看到了 Broadcom 设备:

$ lspci

00:00.0 Host bridge: Advanced Micro Devices, Inc. [AMD] RS780 Host Bridge
00:01.0 PCI bridge: Advanced Micro Devices, Inc. [AMD] RS780/RS880 PCI to PCI bridge (int gfx)
00:04.0 PCI bridge: Advanced Micro Devices, Inc. [AMD] RS780/RS880 PCI to PCI bridge (PCIE port 0)
00:05.0 PCI bridge: Advanced Micro Devices, Inc. [AMD] RS780/RS880 PCI to PCI bridge (PCIE port 1)
00:11.0 SATA controller: Advanced Micro Devices, Inc. [AMD/ATI] SB7x0/SB8x0/SB9x0 SATA Controller [AHCI mode]
00:12.0 USB controller: Advanced Micro Devices, Inc. [AMD/ATI] SB7x0/SB8x0/SB9x0 USB OHCI0 Controller
00:12.1 USB controller: Advanced Micro Devices, Inc. [AMD/ATI] SB7x0 USB OHCI1 Controller
00:12.2 USB controller: Advanced Micro Devices, Inc. [AMD/ATI] SB7x0/SB8x0/SB9x0 USB EHCI Controller
00:14.0 SMBus: Advanced Micro Devices, Inc. [AMD/ATI] SBx00 SMBus Controller (rev 3c)
00:14.2 Audio device: Advanced Micro Devices, Inc. [AMD/ATI] SBx00 Azalia (Intel HDA)
00:14.3 ISA bridge: Advanced Micro Devices, Inc. [AMD/ATI] SB7x0/SB8x0/SB9x0 LPC host controller
00:14.4 PCI bridge: Advanced Micro Devices, Inc. [AMD/ATI] SBx00 PCI to PCI Bridge
00:18.0 Host bridge: Advanced Micro Devices, Inc. [AMD] K8 [Athlon64/Opteron] HyperTransport Technology Configuration
00:18.1 Host bridge: Advanced Micro Devices, Inc. [AMD] K8 [Athlon64/Opteron] Address Map
00:18.2 Host bridge: Advanced Micro Devices, Inc. [AMD] K8 [Athlon64/Opteron] DRAM Controller
00:18.3 Host bridge: Advanced Micro Devices, Inc. [AMD] K8 [Athlon64/Opteron] Miscellaneous Control
01:05.0 VGA compatible controller: Advanced Micro Devices, Inc. [AMD/ATI] RS780M [Mobility Radeon HD 3200]
02:00.0 Network controller: Broadcom Corporation BCM4312 802.11b/g LP-PHY (rev 01)
08:00.0 Ethernet controller: Qualcomm Atheros AR8132 Fast Ethernet (rev c0)

我怎样才能解决这个问题?

答案1

我看到一些使用相同卡的用户遇到了同样的问题(安装 Broadcom 无线驱动程序

一个已知问题是 jockey(也称为附加驱动程序)为一些 Broadcom 卡推荐了错误的驱动程序。

请打开终端并运行并发布:

sudo apt-get install --reinstall bcmwl-kernel-source

完成后,执行以下操作:

sudo modprobe wl 

如果没有错误或警告,您的无线设备应该可以正常工作。

OP 表示需要额外的步骤才能使此解决方案发挥作用。见下文

完成这里的所有步骤后,我还必须另外安装 b43 固件包,如下所示:

sudo apt-get install firmware-b43-installer

重启后它就可以正常工作了。

相关内容