最近它不断重复出现!!网络图标显示网络已禁用,我的操作系统是 ubuntu 10.10。
当我上网一段时间后(可能是 2 小时或一天),它断开连接,然后无法再连接到 WiFi,直到重新启动机器!
我搜索并尝试了很多解决方案,但似乎没有一个有用的解决方案可以解决问题 :(
这里有一个论坛那里解释了同样的问题,但无法解决!我尝试了与此处发现的问题相关的每个线程/问题,但没有希望。
“Rfkill list all”命令显示:
1: phy0: Wireless LAN
Soft blocked: no
Hard blocked: yes
即使无线按钮已打开!
另一个命令:
sudo ifconfig wlan0 up
SIOCSIFFLAGS: Operation not possible due to RF-kill
*“lshw”命令:
*-network
description: Ethernet interface
product: RTL8111/8168B PCI Express Gigabit Ethernet controller
vendor: Realtek Semiconductor Co., Ltd.
physical id: 0
bus info: pci@0000:02:00.0
logical name: eth0
version: 01
serial: 00:19:db:3d:d1:18
width: 64 bits
clock: 33MHz
capabilities: bus_master cap_list rom ethernet physical
configuration: broadcast=yes driver=r8169 driverversion=2.3LK-NAPI ip=192.168.1.102 latency=0 multicast=yes
resources: irq:43 ioport:d800(size=256) memory:fe2ff000-fe2fffff memory:fe2c0000-fe2dffff
*-network:0 DISABLED
description: Wireless interface
physical id: 1
bus info: usb@1:6
logical name: wlan0
serial: 00:19:db:9d:d7:c3
capabilities: ethernet physical wireless
configuration: broadcast=yes driver=rt73usb driverversion=2.6.35-32-generic firmware=N/A multicast=yes wireless=IEEE 802.11bg
*-network:1 DISABLED
description: Ethernet interface
physical id: 2
logical name: vboxnet0
serial: 0a:00:27:00:00:00
capabilities: ethernet physical
configuration: broadcast=yes multicast=yes
*“lspci”命令:
02:00.0 Ethernet controller: Realtek Semiconductor Co., Ltd. RTL8111/8168B PCI Express Gigabit Ethernet controller (rev 01)
请帮忙....任何建议都将不胜感激。
答案1
如果rfkill list
显示1
被硬阻止:您是否尝试运行
rfkill unblock 1
这对我有用(但就我而言,我必须运行rfkill unblock 0
,rfkill unblock 2
第一个是我的无线开关,第二个是 wifi 开关)
答案2
我将在启动板上提交一个错误来报告此间歇性故障。
在此期间,您可以尝试一些潜在的方法。
建议1。
使用较早的内核启动 -SHIFT在启动时按下以显示您的 Grub。选择以前的版本选项并选择较旧的内核
建议2。
通过以下方式断开并启动局域网连接
ifconfig wlan0 down
ifconfig wlan0 up
建议3。
强制重新启动网络管理器服务
sudo service network-manager restart
建议4。
卸载并重新加载内核模型并重新启动网络管理器:
sudo modprobe -r rt73usb
sudo modprobe rt73usb
sudo service network-manager restart
答案3
在启动计算机时尝试:
press f2? to get into bios
press f9? to reset to default settings
press f10? to save settings
检查您是否仍然受到严格阻止。
[按键适用于我的笔记本电脑,不是戴尔的,你可能需要检查哪些是你自己电脑的]
答案4
对于那些像我一样尝试过所有方法的人,包括
rfkill list
@cfstras 建议,您可以尝试一些非常简单的事情。
就我而言,rfkill list
输出为:
0: phy0: Wireless LAN
Soft blocked: no
Hard blocked: no
1: brcmwl-0: Wireless LAN
Soft blocked: no
Hard blocked: yes
所以我尝试了:
rfkill unblock 1
这没有帮助。经过一番谷歌搜索,我只需按下Fn+PrtScr
带有无线网络图标的按钮即可解决问题。(我有戴尔 XPS 13 9343,但在你的笔记本电脑上,这个按钮可能在其他按钮上)。HTH。