This is by no means a fix, but for me it is a work-around.

When I first wrote this scripts, it wouldn't get the internet up and
running when the net went down. I would need to reboot. I just ran it
yesterday just to see, and low and behold, my net comes back up without
a reboot.

Hope it might help you, too.

#! /bin/bash
#
pkill nm-app
sudo modprobe -v -r iwlagn
sudo modprobe -v iwlagn
nm-applet &

Save that (I called mine reset_wireless). Make it excecutable with chmod
+x reset_wireless (or whatever you called it). Then either put it in an
executable path found by typing echo $PATH or just run it with
./reset_wireless (or, again, whatever you called it).

Yours,
Narnie

ps, if you don't want to get nm-applet output in your terminal, change
it to:

#! /bin/bash
#
pkill nm-app
sudo modprobe -v -r iwlagn
sudo modprobe -v iwlagn
nm-applet &> /dev/null &

-- 
Intel Wireless 5300 AGN: iwlagn: No space for Tx
https://bugs.launchpad.net/bugs/352228
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

Reply via email to