无法将AR9287无线网络的软块设置更改为“否”


10

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

通常这是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块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打开/关闭我的无线设备。连接时其指示灯点亮,有活动时指示灯闪烁,但不显示开/关状态。

我已经尽力尝试可以在Internet上找到的所有内容,但是没有任何方法可以解除阻止它或保持无线功能。

这是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

Answers:


13

acer-wmi内核模块和Atheros驱动程序之间的冲突可能是一个常见问题。

建议-将以下内容复制并粘贴(逐行)到终端中:

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

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

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


我想我在其他地方也看到过此修复程序,但是由于缺乏说明,我没有尝试过。有用。谢谢!
凯文

-1

在终端中运行以下命令:

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

错误:删除“ ath5k”:没有此类文件或目录
sam 2014年
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.