Page 2 of 2 FirstFirst 12
Results 11 to 16 of 16

Thread: Wireless stopped working on 9.10 (Intel WiFi Link 5100)

  1. #11
    Join Date
    Apr 2008
    Beans
    332
    Distro
    Ubuntu 10.04 Lucid Lynx

    Re: Wireless stopped working on 9.10 (Intel WiFi Link 5100)

    Quote Originally Posted by Skender View Post
    Code:
    tijl@Smaug:~$ sudo iwlist wlan0 scan
    wlan0     Interface doesn't support scanning : Network is down
    Also, when wireless doesn't work, the WiFi LED is switched off. That makes it seem like a hardware issue, but it does still work in Windows. The LED will just flash on during the Windows boot process. While booting Ubuntu, it remains switched off (unless the battery is fully charged and the power plug is connected as I described earlier).
    sudo modprobe <modulename>

    I think the module you're looking for is iwlagn.

    Lets see if that works.

  2. #12
    Join Date
    Dec 2008
    Beans
    11

    Re: Wireless stopped working on 9.10 (Intel WiFi Link 5100)

    Quote Originally Posted by munky99999 View Post
    sudo modprobe <modulename>
    I think the module you're looking for is iwlagn.
    No, that doesn't help. The iwlagn module is already loaded.
    I upgraded to 10.04 yesterday, but the problem remains.

  3. #13
    Join Date
    Aug 2008
    Beans
    88
    Distro
    Ubuntu

    Re: Wireless stopped working on 9.10 (Intel WiFi Link 5100)

    Quote Originally Posted by Skender View Post
    No, that doesn't help. The iwlagn module is already loaded.
    I upgraded to 10.04 yesterday, but the problem remains.
    I tried that as well, same issue, iwlagn is loaded, and still nothing. 10.04
    ~tak
    http://www.taksmind.org/
    irc.esper.net - tak
    irc.freenode.com - tak11

  4. #14
    Join Date
    Nov 2008
    Location
    Ghent, Belgium
    Beans
    9
    Distro
    Kubuntu 10.10 Maverick Meerkat

    Re: Wireless stopped working on 9.10 (Intel WiFi Link 5100)

    I had the same problem in Kubuntu 10.04

    It seems to be solved since I installed the 2.6.34-rc6 (build date 30/04/2010). Packages can be found on http://kernel.ubuntu.com/~kernel-ppa....34-rc6-lucid/

    More info on the KernelMainlineBuilds see: https://wiki.ubuntu.com/KernelMainlineBuilds

    Note: since the kernel update KDE tells me it wants to remove the HDMI audio output... Though it seems to have detected a second HDMI audio output (it named it Intel HDMI 0). I don't have an HDMI device at the moment so I can't test wheter it still works...

  5. #15
    Join Date
    Aug 2008
    Beans
    88
    Distro
    Ubuntu

    Re: Wireless stopped working on 9.10 (Intel WiFi Link 5100)

    Quote Originally Posted by ULtimeeTje View Post
    I had the same problem in Kubuntu 10.04

    It seems to be solved since I installed the 2.6.34-rc6 (build date 30/04/2010). Packages can be found on http://kernel.ubuntu.com/~kernel-ppa....34-rc6-lucid/

    More info on the KernelMainlineBuilds see: https://wiki.ubuntu.com/KernelMainlineBuilds

    Note: since the kernel update KDE tells me it wants to remove the HDMI audio output... Though it seems to have detected a second HDMI audio output (it named it Intel HDMI 0). I don't have an HDMI device at the moment so I can't test wheter it still works...
    I tried upgrading however the kernel broke my system =( had to boot into an older kernel and remove it with aptitude
    ~tak
    http://www.taksmind.org/
    irc.esper.net - tak
    irc.freenode.com - tak11

  6. #16
    Join Date
    Aug 2008
    Beans
    88
    Distro
    Ubuntu

    Re: Wireless stopped working on 9.10 (Intel WiFi Link 5100)

    Edit:Bug fix

    Wrote a script to solve this problem.
    available at: http://pastebin.com/raxb300P

    Code:
    #!/bin/bash
    #repair interwebs.
    #by: tak 6/2/2010
    
    #Repairs occasional networking bug in kubuntu.
    
    ROOT_UID=0  
    
    echo "Checking for root..."
    
    if [ "$UID" -eq "$ROOT_UID" ]  
    then
      echo "You are root. moving on"
    else
      echo "Run as root."
      exit 1
    fi
    
    if [ -n `cat /etc/NetworkManager/nm-system-settings.conf | grep false` ]
    then
      echo "Problem found.."
      sed 's/false/true/g' /etc/NetworkManager/nm-system-settings.conf > /etc/NetworkManager/nm-system-settings.temp
      rm /etc/NetworkManager/nm-system-settings.conf
      mv /etc/NetworkManager/nm-system-settings.temp /etc/NetworkManager/nm-system-settings.conf
      echo "Problem repaired."
    fi
    
    if [ -z `cat /etc/NetworkManager/nm-system-settings.conf | grep ifupdown,keyfile` ]
    then
      echo "Problem found.."
      sed 's/plugins=.*$/plugins=ifupdown,keyfile/g' /etc/NetworkManager/nm-system-settings.conf > /etc/NetworkManager/nm-system-settings.temp
      rm /etc/NetworkManager/nm-system-settings.conf
      mv /etc/NetworkManager/nm-system-settings.temp /etc/NetworkManager/nm-system-settings.conf
      echo "Problem repaired."
    fi
    
    if [ -n `cat /var/lib/NetworkManager/NetworkManager.state | grep false` ]
    then
      echo "Problem found.."
      sed 's/false/true/g' /var/lib/NetworkManager/NetworkManager.state > /var/lib/NetworkManager/NetworkManager.temp
      rm /var/lib/NetworkManager/NetworkManager.state
      mv /var/lib/NetworkManager/NetworkManager.temp /var/lib/NetworkManager/NetworkManager.state
      echo "Problem repaired."
    fi
    
    exit 0
    Last edited by Tak11; June 3rd, 2010 at 05:27 AM. Reason: bug fix
    ~tak
    http://www.taksmind.org/
    irc.esper.net - tak
    irc.freenode.com - tak11

Page 2 of 2 FirstFirst 12

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •