First, i have set it up with Kubuntu, i am learning at the moment Ubuntu, it is important to be updated and this distribution has given a really good experience, it replaced Windows.
The Card is this:
06:05.0 Network controller: Broadcom Corporation BCM4318 [AirForce One 54g] 802.11g Wireless LAN Controller (rev 02)
Kubuntu detects this card and you just download the driver from Internet, everything is very automated, something that i am not used to as Unix Administrator.
Then create /etc/wpa_supplicant.conf
ctrl_interface=/var/run/wpa_supplicant
network={
ssid="changeit"
psk="mypassword"
proto=WPA RSN
key_mgmt=WPA-PSK
pairwise=TKIP CCMP
group=TKIP CCMP
priority=5
}
Edit /etc/network/interfaces
auto eth1
iface eth1 inet dhcp
wireless-essid linux
pre-up wpa_supplicant -Bw -Dwext -ieth1 -c/etc/wpa_supplicant.conf
post-down killall -q wpa_supplicant
And finally:
ifdown eth1
ifup eth1
This can be improved for WPA2 or replace the password in the file with an encrypted password, but i leave that for you.

















