Wifi Network not appearing in Ubuntu 14.04

18,683

First, find out which driver is installed:

lsmod | grep -e wl -e brcmsmac

This: Installing Broadcom Wireless Drivers suggests that the correct driver is brcmsmac. If you have wl, you will have much better performance with the former. Remove the incorrect driver:

sudo apt-get purge bcmwl-kernel-source

Reboot and let us hear the result.

Share:
18,683

Related videos on Youtube

KVM
Author by

KVM

Newbie Programmer

Updated on September 18, 2022

Comments

  • KVM
    KVM over 1 year

    We have a shared WiFi network for our hostel. After I upgraded to 14.04 that particular WiFi network is not getting listed in Ubuntu (other WiFi networks are listed and am able to connect).

    However I'm able to connect to that same shared network with Windows on the same laptop. What could be the possible reason for only that WiFi network not getting listed?

    I performed an iw reg set IN to set it to India.

    The output to lspci -nn | grep 0280 is:

    12:00.0 Network controller [0280]: Broadcom Corporation BCM4313 802.11bgn 
    Wireless Network Adapter [14e4:4727] (rev 01)
    

    I performed scan for the network using iwlist scan . The network i want to connect to is not in the list but at the same time it is available in my mobile and other laptops near by.

    • Jeremy31
      Jeremy31 about 9 years
      What country are you in? What channel is the router on? What is the result of iw reg get
    • KVM
      KVM about 9 years
      I am from India. Sorry about the formatting of the terminal output. I am using mobile as internet is not working with the os. That's why
    • Jeremy31
      Jeremy31 about 9 years
      Try sudo iw reg set IN as it might help
    • KVM
      KVM about 9 years
      It now displays country as IN for the command $iw reg get but still that shared WiFi network is not appearing in the list.
    • Jeremy31
      Jeremy31 about 9 years
      Is it broadcasting the SSID, you might be able to check iwlist scan to see if there is an access point that has an empty SSID
    • chili555
      chili555 about 9 years
      We'd love to know about the wireless device and therefore the driver. Please post: lspci -nn | grep 0280 Thanks.
    • Fabby
      Fabby about 9 years
      Please edit your question to include all relevant info in one spot so the next person coming around to try to help you doesn't have to read all the comments. as I just did for you now.
    • KVM
      KVM about 9 years
      @Fabby Thank you for guiding me through the best practices. I have updated the question as you suggested.
    • KVM
      KVM about 9 years
      @chili555 Please find the question updated with the command outputs you asked for.