这似乎是一个相当长期存在的问题,如以下问题所示:
暂停后“无线被硬件开关禁用”并且其他硬件按钮无效 - 我该如何解决这个问题?
但还没找到好的解决办法!
无线网络在重启后工作正常,但在挂起后,硬件开关(对于我的笔记本电脑而言f12
)对无线网络没有任何影响,它只是永久关闭,并显示为红色 LED。所有
我的rfkill list all
读物:
0: phy0: Wireless LAN
Soft blocked: no
Hard blocked: yes
1: hp-wifi: Wireless LAN
Soft blocked: no
Hard blocked: yes
任何组合都rfkill <un>block wifi
不起作用,尽管一度首先block
ing,然后unblock
ing 实际上再次将其打开。
sudo lshw -C network
内容如下:
*-network DISABLED
description: Wireless interface
product: AR9285 Wireless Network Adapter (PCI-Express)
vendor: Qualcomm Atheros
physical id: 0
bus info: pci@0000:02:00.0
logical name: wlan0
version: 01
serial: 78:e4:00:65:2e:3f
width: 64 bits
clock: 33MHz
capabilities: pm msi pciexpress bus_master cap_list ethernet physical wireless
configuration: broadcast=yes driver=ath9k driverversion=3.11.0-12-generic firmware=N/A latency=0 link=no multicast=yes wireless=IEEE 802.11bgn
resources: irq:17 memory:90100000-9010ffff
*-network DISABLED
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: 02
serial: c8:0a:a9:89:b4:30
size: 10Mbit/s
capacity: 100Mbit/s
width: 64 bits
clock: 33MHz
capabilities: pm msi pciexpress msix vpd bus_master cap_list rom ethernet physical tp mii 10bt 10bt-fd 100bt 100bt-fd autonegotiation
configuration: autonegotiation=on broadcast=yes driver=r8169 driverversion=2.3LK-NAPI duplex=half latency=0 link=no multicast=yes port=MII speed=10Mbit/s
resources: irq:42 ioport:2000(size=256) memory:90010000-90010fff memory:90000000-9000ffff memory:90020000-9002ffff
另外,/etc/pm/sleep.d/brcm.sh
按照建议添加文件这里只是防止笔记本电脑挂起根本,这当然没有什么好处。
这个问题有一个答案敦促安装原始驱动程序,但这不是“可接受的答案”,所以我宁愿不冒险。此外,我承认我对此有点困惑,希望有人能根据我提供的具体信息提供帮助。
xev
显示我的无线开关()没有触发任何内部事件f12
,但作为硬件开关的其他功能键工作正常。编辑这没关系,因为xev
即使交换机正常工作也不会显示任何事件。我正在考虑删除这一段……
我很乐意提供更多信息,只要你愿意帮我找到它!这是一个非常烦人的错误。
我有一个Compaq Presario CQ62
。
编辑。我刚刚尝试重新加载 bios 默认值(或其他内容),如下所示这个视频.没用。
编辑。我尝试了这个答案,但没起作用。
编辑. 输出lspci | grep Network
:
02:00.0 Network controller: Qualcomm Atheros AR9285 Wireless Network Adapter (PCI-Express) (rev 01)
编辑。下面评论中给出了更长的输出的 Pastebin。
编辑。我不知道我是否正确,但我在以下位置发现了这一行dmesg
:
[ 0.198949] acpi PNP0A08:00: ACPI _OSC support notification failed, disabling PCIe ASPM
这似乎有些道理,因为它指的是PCI
......我是一个正在尽力的菜鸟!
编辑。这个?来自dmesg
?它有名称ath
和phy0
与驱动程序和其中一个网络接口相关的名称(据我所知)。
[ 106.592792] ath: phy0: ASPM enabled: 0x43
编辑。今天早上,我让笔记本电脑挂起一整晚,然后当我试图唤醒它时,它就是不听使唤。它会尝试,然后又会休眠(我想这有点像我的感觉!</badjoke>
)。这些问题可能相关吗?
答案1
好吧,我已经在一台新机器上安装了 Ubuntu 13.10,但我的网络设置搞乱了。
- 我安装了 gksu
我跑了
gksu gedit /etc/network/interfaces
使用以下命令编辑文件:
# This file describes the network interfaces available on your system # and how to activate them. For more information, see interfaces(5). # The loopback network interface auto lo iface lo inet loopback # This is a list of hotpluggable network interfaces. # They will be activated automatically by the hotplug subsystem. # auto eth1 # iface eth1 inet dhcp
然后保存即可。
只是为了确保一切顺利
请检查您的
dhcpd.conf
文件/etc/dhcp/dhcpd.conf
以确保option domain-name "example.org"; option domain-name-server ns1.example.org, ns2.example.org; default-lease-time 600; max-lease-time 7200;
前面不要有#。
现在重新启动您的系统,我希望它能像我的一样正常工作。
答案2
确实,今天的更新解决了这个问题。很抱歉,我无法为未来遇到此问题的人提供更多帮助!