Edward,
First of all, thank you very much for all your hard work pulling all that info into one concise website. It was a big help to me upgrading (fresh install) from Hoary to Breezy.
I got WPA working on my 2373-3UU (Atheros PCI 802.11a/b/g wireless). Here is what I did:
1) install wpasupplicant from synaptic package manager
2) Create wpa_supplicant.conf
Code:
sudo gedit /etc/wpa_supplicant.conf
add the following lines (subsituting your SSID and secret key):
Code:
network={
ssid="ssid"
scan_ssid=1
proto=WPA
key_mgmt=WPA-PSK
psk="secret key"
}
save and exit.
3) run wpa_supplicant
Code:
sudo wpa_supplicant -iath0 -c/etc/wpa_supplicant.conf -Dmadwifi -d
once that is working OK then get wpa_supplicant to start automatically at bootup:
1) edit /etc/default/wpasupplicant
Code:
sudo gedit /etc/default/wpasupplicant
2) edit/add the following lines:
Code:
ENABLED=1
OPTIONS="-iath0 -c/etc/wpa_supplicant.conf -Dmadwifi -w"
save and exit.
Network Manager is pretty slick but does not work well with my configuration. It drops the wireless connection constantly. I didn't figure it out completely but I'm guessing it has something to do with running wpa_supplicant at the same time. For my system Network Monitor seems to works OK.
I got suspend with flgrx drivers working from the website linked in the previous post. Very cool!