[Bug 1311257] Re: Wifi cannot connect or unstable after suspend 14.04

2014-07-07 Thread Kevin Lyda
Hm... http://ubuntuforums.org/showthread.php?t=2182058&p=12824696#post12824696 That indicates a different solution might work - replace "killall wpa_supplicant" above with "nmcli nm sleep false". I haven't tried it but it might work. And it might help Ubuntu devs towards a solution. -- You recei

[Bug 1311257] Re: Wifi cannot connect or unstable after suspend 14.04

2014-07-07 Thread Kevin Lyda
I have the same issue. Upgraded 12.04 to 14.04 on a Lenovo T530. Killing wpa_supplicant resolves the issue, so I wrote the following script which seems to work: Put it in /etc/pm/sleep.d/wpa_supplicant_workaround : #!/bin/sh case "$1" in resume|thaw) killall wpa_supplicant ;; esac No