Comment 1 for bug 339716

Revision history for this message
Michael Rocco Sabino (m-sabino) wrote :

Temporary workaround (for alpha 5)

-----b43netfix.sh----
echo "Stopping Network Manager. Ctrl+C to abort. Usage: ./net <essid>."
sudo /etc/init.d/NetworkManager stop

echo "Line to fix iwconfig, since 4318 sometimes doesn't associate (on my laptop)"
sudo iwconfig wlan0 essid UNBORK
echo Sudoing iwconfig wlan0 with essid: $1
sudo iwconfig wlan0 essid $1
echo "Bringing interface up and down to associate"
sudo ifconfig wlan0 down
sudo ifconfig wlan0 up
sudo dhclient wlan0

--------------------------