0

My WiFi did not turn on after suspending. So I followed the steps found here Wireless networking not working after resume in Ubuntu 14.04 to fix it. Now it does turn on, but only every other time. Any advice on how to fix that issue? The WiFi adapter is an Intel Dual Band Wireless-AC 7260.

1 Answers1

0

So what seems to happen is that this script:

#!/bin/sh 
case "${1}" in
    resume|thaw)
    nmcli nm sleep false
            ;;
esac

Sometimes executes directly upon logging in and sometimes only after half a minute after logging in again. So I'll just leave it at that and consider the issue fixed for the time being. If there is a way to make the script execute faster I'll try to find it and post it here.