对于AR9287无线网络,无法将软块设置更改为“no”

我的无线工作,但我必须右键单击网络管理器小程序,并在每次启动时启用无线,这很烦人。

这通常是rfkill的输出:

 x@Triela:~$ rfkill list 0: acer-wireless: Wireless LAN Soft blocked: yes Hard blocked: no 1: phy0: Wireless LAN Soft blocked: no Hard blocked: no 2: hci0: Bluetooth Soft blocked: no Hard blocked: no 

当我rfkill阻止0; rfkill block 1这是我得到的:

 x@Triela:~$ rfkill list 0: acer-wireless: Wireless LAN Soft blocked: yes Hard blocked: no 1: phy0: Wireless LAN Soft blocked: yes Hard blocked: yes 2: hci0: Bluetooth Soft blocked: no Hard blocked: no 

当我rfkill取消阻止所有时,它会清除除0上的软块之外的所有内容。我的无线通过fn + f3打开/关闭。 连接时指示灯亮,有活动时闪烁,但不显示开/关状态。

我已经尝试了我可以在互联网上找到的所有内容,但没有任何方法可以取消阻止它或保持无线function。

这是我的lspci -v wifi卡的输出:

 06:00.0 Network controller: Atheros Communications Inc. AR9287 Wireless Network Adapter (PCI-Express) (rev 01) Subsystem: Foxconn International, Inc. Device e034 Flags: bus master, fast devsel, latency 0, IRQ 17 Memory at d0200000 (64-bit, non-prefetchable) [size=64K] Capabilities: Kernel driver in use: ath9k Kernel modules: ath9k 

您可能会遇到acer-wmi内核模块与Atheros驱动程序之间发生冲突的常见问题。

建议 – 将以下内容复制并粘贴(终止)到终端:

 sudo modprobe -r acer-wmi cd /etc/modprobe.d sudo nano blacklist.conf 

然后将blacklist acer-wmi添加为文件末尾的新行。

保存( Ctrl + O )并重新启动。

在终端中运行以下命令:

 sudo rmmod -f ath5k sudo rfkill unblock all sudo modprobe ath5k