Aye, i recently moved to Xubuntu 15.04 and from time to time when I wake up laptop from suspend wifi cannot connect. It says networking disabled. I tried turnig on option "Enable networking" but that gives me nothing. I have to restart laptop (and It's also a problem as sometimes turning off or trying to restart just logs me off, i have to turn it off the hard way) and then it works. Any suggestions?
Asked
Active
Viewed 331 times
2 Answers
0
I had a similar problem on Xubuntu, try to run
sudo apt-get autoremove
sudo apt-get autoclean
sudo dpkg --configure -a
Then restart the PC. Also, you can check for additional drivers on the driver Utility.
If the problem persist, look at
dmesg
And attach the output on a text file.
Also, you can see this entry: WiFi Issues
-1
Yeah, seems a little harsh. Possibly an accidental click?
At any rate, have you tried this:
http://www.techytalk.info/ubuntu-fix-network-stopped-working-after-resume-from-sleep/
And if you are struggling to follow that solution, paste the results of "sudo lsmod" and we can go from there.

Byte Commander
- 107,489
autoclean, erases residual packages from disk, to free disk space.
dpkg --configure -a: Configure a package which has been unpacked but not yet configured. If -a or --pending is given instead of package, all unpacked but unconfigured packages are configured.
For more information, you can do : man, for example,
man dpkg
– GTRONICK Jul 24 '15 at 13:17lsmod
,ifconfig
andiplink
. You can also try the solution given here: [link] (http://www.linuxquestions.org/questions/ubuntu-63/wireless-became-disabled-how-do-i-enable-858357/) at comment #7. Also, you can try the solution given above by Mark Henderson. – GTRONICK Jul 26 '15 at 17:17