问题描述
我使用的是 Ubuntu 11.10(与 Windows 7 双启动),但我无法访问无线互联网,即使我可以在 Windows 7 上访问互联网。
rfkill list all
的输出如下:
rfkill list all
0: brcmwl-0: Wireless LAN
Soft blocked: no
Hard blocked: yes
1: hp-wifi: Wireless LAN
Soft blocked: no
Hard blocked: no
sudo lshw -C network *-network DISABLED
的输出为:
description: Wireless interface
product: BCM4313 802.11b/g/n Wireless LAN Controller
vendor: Broadcom Corporation
physical id: 0
bus info: pci@0000:02:00.0
logical name: eth1
version: 01
serial: 11:11:11:11:11:11
width: 64 bits
clock: 33MHz
capabilities: pm msi pciexpress bus_master cap_list ethernet physical wireless
configuration: broadcast=yes driver=wl0 driverversion=5.100.82.38 latency=0 multicast=yes wireless=IEEE 802.11
resources: irq:16 memory:c2500000-c2503fff *-network
description: Ethernet interface
product: RTL8101E/RTL8102E PCI Express Fast Ethernet controller
vendor: Realtek Semiconductor Co., Ltd.
physical id: 0
bus info: pci@0000:03:00.0
logical name: eth0
version: 05
serial: 22:22:22:22:22:22
size: 100Mbit/s
capacity: 100Mbit/s
width: 64 bits
clock: 33MHz
capabilities: pm msi pciexpress msix vpd bus_master cap_list ethernet physical tp mii 10bt 10bt-fd 100bt 100bt-fd autonegotiation
configuration: autonegotiation=on broadcast=yes driver=r8169 driverversion=2.3LK-NAPI duplex=full firmware=rtl_nic/rtl8105e-1.fw latency=0 link=yes multicast=yes port=MII speed=100Mbit/s
resources: irq:42 ioport:3000(size=256) memory:c0404000-c0404fff memory:c0400000-c0403fff
-
Broadcom STA 无线驱动程序已安装、激活并且当前正在使用。
-
我的笔记本电脑是 HP-Pavilion-g6-1004tx。
-
我的硬件开关已打开。
-
网络设置中的“启用无线”选项也被禁用。
最佳方法
如果您无法修复您的 wlan 接口、wifi 网络,您必须执行以下操作:
首先通过电脑的快捷键激活您的wifi(例如 Fn
+ F2
)。
然后:
rfkill unblock all
sudo /etc/init.d/networking restart
sudo rm /etc/udev/rules.d/70-persistent-net.rules
sudo reboot
现在我已经建立了WLAN。
次佳方法
useful forum post 指出以下操作作为解决方案。
首先,运行以下命令。
sudo modprobe hp-wmi
rfkill unblock all
现在,检查您的卡是否仍被阻止。
rfkill list all
如果还是不行,请点击Function
F12
,看看’hard blocked’是否变为no。另外,请尝试 Alt
F12
。
如果这仍然不起作用,您可以尝试使用开源驱动程序而不是专有驱动程序。正如 here 所提到的,专有的“驱动程序更有可能导致问题而不是解决问题。Broadcom 芯片上的用户报告的大多数问题都是由该驱动程序引起的。强烈不建议使用该驱动程序。在您考虑尝试之前第一,一定要先尝试其他驱动程序。”
那么,让我们这样做吧。
echo 'blacklist mac80211
blacklist brcm80211
blacklist cfg80211
blacklist wl
blacklist lib80211_crypt_tkip
blacklist lib80211' | sudo tee -a /etc/modprobe.d/blacklist.conf
sudo sed -i '/exit 0/i \
modprobe brcm80211' /etc/rc.local
这将在每个启动过程结束时加载开源驱动程序模块。
感谢 jokerdino 的支持。
第三种方法
尝试重新启动计算机,
进入BIOS
将设置设为默认值
保存设置
重新开始。
对我有用
第四种方法
只需输入 rfkill unblock all
就可以了。
并重新启动计算机。