billybryson54
Well-Known Member
I'd like that info as my pi keeps disconnecting from my network.
Sent from my iPhone using the sweet Home Brew app, cuz I'm a ****** and I need everyone to know that I have an iPhone as if everyone else in the world doesn't have one.
Sorry for the delay, the last few nights have been a lot crazier than I thought they were going to be. Anyway, yes. My wifi issue seems to have been solved. I just added a few lines of code to disable the power savings feature, and to automatically ping my router every so often.
Open lx terminal and type:
sudo nano /etc/modprobe.d/8192cu.conf
Inside of that file, I added the following two lines;
# Disable power saving
options 8192cu rtw_power_mgnt=0 rtw_enusbss=0
Save and exit, and then type
crontab -e
From there I scrolled all the way to the bottom and added this line;
*/1 * * * * ping -c 1 192.168.0.254
The IP address in that last line should be entered as the IP address of your wireless router.
Then finally, reboot your Pi
I'm not going to take the credit for this, I found this out after a bit of google searching. However, since I did it, I have not had one single connectivity issue for over a week now. It should be noted that this set of instructions was meant for the edimax dongle but since that's what I currently have, I didn't look further. Hope this helps. Let me know if it does or not.