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.
Asked
Active
Viewed 192 times
1 Answers
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.
-
1Which script? I recommend [edit]ing this answer to expand it with specific details about what you did. (See also How do I write a good answer? for general advice about what sorts of answers are considered most valuable on Ask Ubuntu.) – David Foerster Dec 29 '15 at 16:49
sudo service network-manager restart
– Vignesh Pichamani Dec 29 '15 at 15:10