我校审了这,我熟悉WLAN 设备消失(BCM43142) 尽管看起来无线适配器安装(声称)正确,但我无法发现范围内的所有无线网络,只能发现几个。
附上我的机器配置片段
$ cat /etc/*release* | grep -i distrib
DISTRIB_ID=Ubuntu
DISTRIB_RELEASE=13.10
DISTRIB_CODENAME=saucy
DISTRIB_DESCRIPTION="Ubuntu 13.10"
$ lspci | grep -i bcm
01:00.0 Network controller: Broadcom Corporation BCM43142 802.11b/g/n (rev 01)
$ lshw -c network
*-network
description: Wireless interface
product: BCM43142 802.11b/g/n
vendor: Broadcom Corporation
physical id: 0
bus info: pci@0000:01:00.0
logical name: eth3
version: 01
serial: c0:18:85:bc:70:ef
width: 64 bits
clock: 33MHz
capabilities: pm msi pciexpress bus_master cap_list ethernet physical wireless
configuration: broadcast=yes driver=wl0 driverversion=6.30.223.141 (r415941) latency=0 multicast=yes wireless=IEEE 802.11abg
resources: irq:16 memory:d0500000-d0507fff
*-network
description: Ethernet interface
product: AR8161 Gigabit Ethernet
vendor: Qualcomm Atheros
physical id: 0
bus info: pci@0000:02:00.0
logical name: eth2
version: 10
serial: 84:8f:69:d4:38:f8
size: 100Mbit/s
capacity: 1Gbit/s
width: 64 bits
clock: 33MHz
capabilities: pm pciexpress msi msix bus_master cap_list ethernet physical tp 10bt 10bt-fd 100bt 100bt-fd 1000bt-fd autonegotiation
configuration: autonegotiation=on broadcast=yes driver=alx duplex=full ip=192.168.1.105 latency=0 link=yes multicast=yes port=twisted pair speed=100Mbit/s
resources: irq:45 memory:d0400000-d043ffff ioport:2000(size=128)
$ lsmod | grep -i "bcm\|wl"
bcma 46699 0
wl 4207760 0
lib80211 14381 2 wl,lib80211_crypt_tkip
cfg80211 480503 2 wl,mac80211
$ ifconfig
eth0 Link encap:Ethernet HWaddr 84:8f:69:d4:38:f8
inet addr:192.168.1.105 Bcast:192.168.1.255 Mask:255.255.255.0
inet6 addr: fe80::868f:69ff:fed4:38f8/64 Scope:Link
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:0 errors:0 dropped:0 overruns:0 frame:0
TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:0 (0.0 B) TX bytes:0 (0.0 B)
Interrupt:16
eth1 Link encap:Ethernet HWaddr c0:18:85:bc:70:ef
inet6 addr: fe80::c218:85ff:febc:70ef/64 Scope:Link
UP BROADCAST MULTICAST MTU:1500 Metric:1
RX packets:0 errors:0 dropped:0 overruns:0 frame:0
TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:0 (0.0 B) TX bytes:0 (0.0 B)
Interrupt:16
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:78 errors:0 dropped:0 overruns:0 frame:0
TX packets:78 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:0
RX bytes:11043 (11.0 KB) TX bytes:11043 (11.0 KB)
$ dmesg | grep -i bcm
[ 2.135729] usb 2-1.5: Product: BCM43142A0
[ 17.274440] eth1: Broadcom BCM4365 802.11 Hybrid Wireless Controller 6.30.223.141 (r415941)
任何帮助将不胜感激!
更新
我也尝试了以下操作,但问题仍然存在:
$ sudo dpkg-reconfigure bcmwl-kernel-source
乃至
$ sudo apt-get autoremove bcmwl-kernel-source
$ sudo apt-get --purge remove bcmwl-kernel-source
$ sudo apt-get install bcmwl-kernel-source
更新 2
我甚至试图寻找任何文件bcm43142 通过 linux 无线 wiki。令人惊讶的是,只有一条记录,上面写着“不支持”。难道我目前使用的驱动程序只检测到 802.11n,而没有检测到 802.11a/b/g?
更新 3
我发现了一个来自 broadcom 的通用驱动程序源,随后安装手册。但似乎在内核版本 3.10 及以上下编译驱动程序存在问题。要检查内核版本,请执行
$ uname -r
3.11.0-17-generic
四处搜寻,我发现修复该问题的补丁.应用它,让其make
成功完成。
$ make
KBUILD_NOPEDANTIC=1 make -C /lib/modules/`uname -r`/build M=`pwd`
make[1]: Entering directory `/usr/src/linux-headers-3.11.0-17-generic'
CFG80211 API is prefered for this kernel version
Using CFG80211 API
LD /tmp/wlan/built-in.o
CC [M] /tmp/wlan/src/shared/linux_osl.o
CC [M] /tmp/wlan/src/wl/sys/wl_linux.o
CC [M] /tmp/wlan/src/wl/sys/wl_iw.o
CC [M] /tmp/wlan/src/wl/sys/wl_cfg80211_hybrid.o
LD [M] /tmp/wlan/wl.o
Building modules, stage 2.
CFG80211 API is prefered for this kernel version
Using CFG80211 API
MODPOST 1 modules
WARNING: modpost: missing MODULE_LICENSE() in /tmp/wlan/wl.o
see include/linux/module.h for more information
WARNING: modpost: Found 1 section mismatch(es).
To see full details build your kernel with:
'make CONFIG_DEBUG_SECTION_MISMATCH=y'
CC /tmp/wlan/wl.mod.o
LD [M] /tmp/wlan/wl.ko
make[1]: Leaving directory `/usr/src/linux-headers-3.11.0-17-generic'
虽然我不确定是否应该执行make install
,因为我不确定结果并且我真的不想让它破坏我的系统。
有什么建议吗?
答案1
无法识别 Broadcom 无线网卡、内核崩溃和其他兼容性问题经常发生。问题来源可能是 Broadcom 的包/驱动程序“bcmwl-kernel-source”,Ubuntu 会自动安装它。查看我在以下链接中写的内容以及它指向的链接,看看所描述的情况是否与您遇到的情况相同。
https://askubuntu.com/a/428712/254056
最后,别忘了给我们反馈并帮助社区!
干杯!
答案2
我多次重新安装 Ubuntu,因此我非常了解这个过程。
- 首先,您需要获得一根以太网线。
- 然后您需要另一台计算机并使用以太网线将它们连接在一起。
- 在可以访问互联网的计算机上,确保打开互联网共享。
这应该会为您提供有线局域网连接,然后尝试安装无线驱动程序。