John Bostwick
TVWBB Wizard
Edimax is all I have and it connected on first boot without any issues. In fact, this was the first time I used AP mode wirelessly to set-up the initial Wireless settings.
wget -O/lib/firmware/rt2870.bin http://capnbry.net/linkmeter/rt2870.bin
Edimax is all I have and it connected on first boot without any issues. In fact, this was the first time I used AP mode wirelessly to set-up the initial Wireless settings.
So AP mode is working now with the Edimax? I tried a few times with no luck then changed to the RT5370 and it worked right out of the gate...
I tried this last night and this morning, same error.EDIT: Reading that thread I see we are using the same firmware they are complaining about and there is a slightly newer version
Code:wget -O/lib/firmware/rt2870.bin http://capnbry.net/linkmeter/rt2870.bin
There's only one USB port on the Pi A, so there's no way to plug in a keyboard to fix it, and no network access.Does restarting network services fix it? If so, that's a pretty simple workaround that can be added with little effort.
# crontab -l
*/3 * * * * /mnt/mmcblk0p4/net-watchdog.sh
# cat /mnt/mmcblk0p4/net-watchdog.sh
#!/bin/sh
test_host=$(netstat -nr | grep "UG" | awk '{ print $2}' | xargs ping -q -w 1 -c 1 | grep "received" | awk '{ print $4 }')
if [ "$test_host" == "0" ] || [ -z "$test_host" ] ;
then
/etc/init.d/network reload
sleep 60
test_host=$(netstat -nr | grep "UG" | awk '{ print $2}' | xargs ping -q -w 1 -c 1 | grep "received" | awk '{ print $4 }')
if [ "$test_host" == "0" ] || [ -z "$test_host" ] ;
then
/sbin/reboot
fi
fi
Both the A and A+ I have here have been running for over 2 days. I am going to call this a solution: only use 8192cu wifi adapters if you're using A/A+ Pi.In any case, it looks like the Edimax works well enough in AP mode to configure initially so, shrug, let's see if it stays running now.