在华硕K52F上挂起后无线无法连接


9

我正在使用带有AR9285无线网卡的运行Ubuntu 11.10的ASUS K52F。在未显示任何网络之后,Wifi可以在挂起之前正常运行。我发现的唯一解决方案是完全重新启动。

Answers:


14

您可以在挂起后重新加载无线驱动程序,以避免重新启动。我的驱动程序是“ ath9k”,可以通过运行“ nm-tool”来查找,并查找与

Driver:   ath9k

然后重新加载驱动程序:

sudo rmmod ath9k
sudo modprobe ath9k

为了使这种情况在您退出挂起状态时自动发生,我们可以在/etc/pm/sleep.d/00_wireless_sleep中添加以下脚本

#!/bin/sh

case "$1" in
  suspend|hibernate)
    /sbin/rmmod ath9k
    ;;
  resume|thaw)
    /sbin/rmmod ath9k
    /sbin/modprobe ath9k
    ;;
esac
exit 0

将“ ath9k”模块名称替换为您从上述nm-tool输出中发现的模块。我必须将脚本命名为“ 00_wireless_sleep”,这样它才能在所有其他恢复脚本之后运行(脚本在恢复时以相反的顺序运行)。不要忘记使文件“ 00_wireless_sleep”成为可执行文件:

sudo chmod 755 /etc/pm/sleep.d/00_wireless_sleep


添加options iwlwifi bt_coex_active=0/etc/modprobe.d/iwlwifi.conf我的工作。 参考
Jared Beck

问题是,如果我暂停太长时间,则会遇到这些问题。由于以上答案均不适合我,因此,这就是我的工作。再次暂停。在10秒钟后恢复。然后就可以了。
MarkovCh1 2012年

致将来的读者注意 截至2014年11月25日,此答案仍然有效(在14.04中)。感谢Ryan
TrailRider 2014年

5

我有同样的问题,但是笔记本电脑/ wificard不同。尝试重新启动网络管理器服务:

sudo service network-manager restart

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.