无法连接到可见的无线网络

无法连接到可见的无线网络

我正在使用 Ubuntu 13.04,但无法使用我的 wifi 路由器。我在网络菜单中看到我的无线网络名称,当我选择它并输入密码时,它会尝试连接几秒钟,然后失败。我确定密码是正确的,因为我在同一台机器上的 Windows 8 操作系统上使用它没有问题。当我通过电缆将笔记本电脑连接到路由器时,它工作正常(实际上我现在就是这样使用它的)。那么为什么我无法连接到 wifi 网络呢?

Ubuntu 13.04 64位 联想 G580

编辑

$ sudo lshw -C network
  *-network               
       description: Ethernet interface
       product: AR8162 Fast Ethernet
       vendor: Qualcomm Atheros
       physical id: 0
       bus info: pci@0000:02:00.0
       logical name: eth0
       version: 10
       serial: b8:88:e3:94:bf:12
       size: 100Mbit/s
       capacity: 100Mbit/s
       width: 64 bits
       clock: 33MHz
       capabilities: pm pciexpress msi msix bus_master cap_list ethernet physical tp 10bt 10bt-fd 100bt 100bt-fd autonegotiation
       configuration: autonegotiation=on broadcast=yes driver=alx driverversion=1.2.3 duplex=full firmware=N/A ip=192.168.0.101 latency=0 link=yes multicast=yes port=twisted pair speed=100Mbit/s
       resources: irq:16 memory:d3900000-d393ffff ioport:2000(size=128)
  *-network
       description: Wireless interface
       product: BCM4313 802.11b/g/n Wireless LAN Controller
       vendor: Broadcom Corporation
       physical id: 0
       bus info: pci@0000:03:00.0
       logical name: eth1
       version: 01
       serial: c0:14:3d:d3:ca:7f
       width: 64 bits
       clock: 33MHz
       capabilities: pm msi pciexpress bus_master cap_list ethernet physical wireless
       configuration: broadcast=yes driver=wl0 driverversion=6.20.155.1 (r326264) latency=0 multicast=yes wireless=IEEE 802.11abg
       resources: irq:17 memory:d3800000-d3803fff

编辑2

$ dmesg
[ 4171.962758] cfg80211: Calling CRDA to update world regulatory domain
[ 4171.965750] cfg80211: World regulatory domain updated:
[ 4171.965752] cfg80211:   (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp)
[ 4171.965754] cfg80211:   (2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[ 4171.965755] cfg80211:   (2457000 KHz - 2482000 KHz @ 20000 KHz), (300 mBi, 2000 mBm)
[ 4171.965756] cfg80211:   (2474000 KHz - 2494000 KHz @ 20000 KHz), (300 mBi, 2000 mBm)
[ 4171.965757] cfg80211:   (5170000 KHz - 5250000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[ 4171.965758] cfg80211:   (5735000 KHz - 5835000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)

答案1

网络管理员与 Broadcom 合作时经常遇到麻烦。

我喜欢使用 WICD,因为它是一个简单易用的网络管理器。它是 Ubuntu 中网络管理器的一个非常好的替代品,当网络管理器无法使用时,它似乎总能正常工作。要安装它,只需打开终端即可。

下载并安装 WICD

sudo apt-get install wicd-gtk 

现在您需要卸载 NetworkManager:

sudo apt-get remove --purge network-manager-gnome network-manager 

现在您可以在菜单中找到 WICD 启动 WICD,找到要使用的网络并输入所需信息、密码、加密等,然后选择自动连接到此网络。一切就绪!

WICD 可能也可以在 Ubuntu 更新管理器中使用,因此您可以先在那里查看,但重要的是完全卸载网络管理器以防止冲突!

相关内容