I just installed Ubuntu 13.10, but the wireless is not working and no wireless networks are showing:
Command: iwconfig
Outputs:
eth0 no wireless extensions.
eth1 IEEE 802.11abg EEID:off/any
Mode:Managed Access Point: Not-Associated Tx-Power-19 dBm
Retry long limit:7 RTS thr:off Fragment thr:off
Power Management:off
lo no wireless extensions.
The lspci -nn | grep 0280
Outputs:
02:00.0 Network controller [0280]: Broadcom Corporation BCM4313 802.11bgn Wireless
Network Adapter [14e4:4727] (rev 01)
Command lsmod | grep -e b43 -e brcm -e wl
Outputs:
wl 4207474 0
lib802011 14352 2 wl,lib80211_crypt_tkit
cfg80211 479757 1 wl
The following commands:
sudo -i
apt-get purge bcmwl-kernel-source
echo "blacklist b43" >> /etc/modprobe.d/blacklist.conf
exit
Output is:
youssef@YoussefSiblini:~$ sudo -i
[sudo] password for youssef:
root@YoussefSiblini:~# apt-get purge bcmwl-kernel-source
Reading package lists... Done
Building dependency tree
Reading state information... Done
E: Unable to locate package bcmwl-kernel-source
root@YoussefSiblini:~# echo "blacklist b43" >> /etc/modprobe.d/blacklist.conf
root@YoussefSiblini:~# ^C
root@YoussefSiblini:~#
The out put of: lsmod | grep -e brcm -e wl and rfkill list all
youssef@YoussefSiblini:~$ lsmod | grep -e brcm -e wl
brcmsmac 562767 0
cordic 12574 1 brcmsmac
brcmutil 15618 1 brcmsmac
mac80211 596969 1 brcmsmac
cfg80211 479757 2 brcmsmac,mac80211
bcma 46670 2 brcmsmac
youssef@YoussefSiblini:~$ rfkill list all
0: phy0: Wireless LAN
Soft blocked: no
Hard blocked: no
1: hci0: Bluetooth
Soft blocked: no
Hard blocked: no
Many thanks in advance.
Youssef