I've tried enabling my wireless every which way I can think of. My 2nd to last attempt was to employ Broadcom's supplied STA drivers. No dice.
Next I attempted to follow the module assistant-based method proposed here on the LMDE forum. Same exact result as the Broadcom method: not active.
And yes, I've blacklisted quite a large number of potentially problematic modules, and my initramdisk has been set properly. None of the following modules are loaded.
/etc/modprobe.d/blacklist.conf
- Code: Select all
[...]
# bad wireless drivers
blacklist acer_wmi
blacklist b43
blacklist ssb
blacklist brcm80211
But I do honestly feel like I'm very close to getting it working! I believe the device is recognized ... it's just not associating with an access point or accepting an essid. As many years as I've used linux, I've never understood the network interface methodology. It's byzantine in the extreme ... and I just don't get it. But I bet, with the following output from a few commands, one of you will know what to do!
/etc/network/interfaces
- Code: Select all
# This file describes the network interfaces available on your system
# and how to activate them. For more information, see interfaces(5).
# The loopback network interface
auto lo
iface lo inet loopback
# The primary network interface
allow-hotplug eth0
iface eth0 inet dhcp
$ lsmod | grep wl
- Code: Select all
wl 2602511 0
lib80211 12992 2 lib80211_crypt_tkip,wl
$ sudo iwconfig
- Code: Select all
lo no wireless extensions.
eth1 no wireless extensions.
eth2 IEEE 802.11bg ESSID:""
Mode:Managed Frequency:2.412 GHz Access Point: Not-Associated
Bit Rate:54 Mb/s Tx-Power:24 dBm
Retry min limit:7 RTS thr:off Fragment thr:off
Power Managementmode:All packets received
Link Quality=5/5 Signal level=0 dBm Noise level=0 dBm
Rx invalid nwid:0 Rx invalid crypt:0 Rx invalid frag:0
Tx excessive retries:0 Invalid misc:0 Missed beacon:0
$ dmesg | grep Broadcom
- Code: Select all
[ 6.504173] usb 4-2: Manufacturer: Broadcom Corp
[ 11.329804] eth0: Broadcom BCM4315 802.11 Hybrid Wireless Controller 5.100.82.38
$ lspci | grep Broadcom
- Code: Select all
06:00.0 Ethernet controller: Broadcom Corporation NetLink BCM5906M Fast Ethernet PCI Express (rev 02)
07:00.0 Network controller: Broadcom Corporation BCM4312 802.11b/g LP-PHY (rev 01)




