Wireless with visible ssid not visible in network menu. Unable to connect by manualy enter ssid
Solution 1:
Source: http://www.intervigil.net/?tag=bcm43224
The one thing NOT covered by the Ubuntu community wiki is the wireless driver. The MacBook Air 4,1 has a Broadcom BCM43224 chip, which is actually covered by several different drivers, b43 (if you hack around a bit), brcmsmac, and the wl Broadcom STA driver (closed source). Poking around seems to suggest that the best option is the brcmsmac module, as it is based off the open-sourced driver that Broadcom released late 2010, however owing to it’s immaturity, it still lives in the staging drivers section of the Linux kernel. It also seems to lack some features supported by the Broadcom STA drivers, namely power management, which is the main reason why I chose to use the closed source (the horror) Broadcom STA drivers available from the Ubuntu “restricted” repository under the brcmwl-kernel-source
package.
The one item to note with this module is that the brcmwl-kernel-source
package actually doesn’t have an updated blacklist file in /etc/modprobe.d
, and will fail to blacklist the brcmsmac
module available by default, potentially leading to problems. I had to add brcmsmac
and bcma
to the blacklist with the following:
sudo sh -c "echo 'blacklist brcmsmac' >> /etc/modprobe.d/blacklist-b43.conf"
sudo sh -c "echo 'blacklist bcma' >> /etc/modprobe.d/blacklist-b43.conf"
This prevents the kernel from loading both drivers.
More about your issue: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=698697
Solution 2:
I had to change my wifi radio channel to channel 9, and it magically appears on the network dropdown. It may possibly be a collision with another wifi network using the same channel or a bug. It displays for me now.