Results 1 to 3 of 3

Thread: And yet again, my wireless won't work

  1. #1
    Join Date
    Jun 2011
    Beans
    205
    Distro
    Ubuntu 12.04 Precise Pangolin

    And yet again, my wireless won't work

    I already solved this issues with Oneiric, somehow with Precise everything is back.

    Initially, Ubuntu won't recognize my Wifi Card, after using this codes it does:

    Code:
    sudo rmmod -f ath5k
    sudo rfkill unblock all
    sudo modprobe ath5k
    Some kind users here assisted me, and provided with this solution:

    Please try this:
    Quote:
    sudo gedit /etc/rc.local
    Change it to:
    Code:
    #!/bin/sh -e
    #
    # rc.local
    #
    # This script is executed at the end of each multiuser runlevel.
    # Make sure that the script will "exit 0" on success or any other
    # value on error.
    #
    # In order to enable or disable this script just change the execution
    # bits.
    #
    # By default this script does nothing.

    modprobe -r ath5k
    rfkill unblock all
    modprobe ath5k

    exit 0
    Proofread carefully, save and close gedit. Now do:
    Code:
    sudo su
    echo "blacklist hp-wmi" >> /etc/modprobe.d/blacklist.conf
    exit

    In Oneiric it worked wonders, Ubuntu finnaly worked with the hardware switch of my Wifi Card. After updating to 12.04 the issue is back.

    I need to use the three previously mentioned commands to turn my card on EVERYTIME I boot up, which is incredibly annoying.

    Any suggestions are appreciated, does anybody else have this recurring issue?

    Thanks.

  2. #2
    Join Date
    Jun 2006
    Location
    Nux Jam
    Beans
    Hidden!
    Distro
    Ubuntu Development Release

    Re: And yet again, my wireless won't work

    my two cents:

    - precise use a newer kernel than oneiric, meaning that interal kernel driver may have changed. So using the same workaround here can brake something working.

    - it should be a good idea to google around with your wireless chipset + precise

    - is there some usefull errors/warnings logged ?

  3. #3
    Join Date
    Jun 2011
    Beans
    205
    Distro
    Ubuntu 12.04 Precise Pangolin

    Re: And yet again, my wireless won't work

    Quote Originally Posted by dino99 View Post
    my two cents:

    - precise use a newer kernel than oneiric, meaning that interal kernel driver may have changed. So using the same workaround here can brake something working.

    - it should be a good idea to google around with your wireless chipset + precise

    - is there some usefull errors/warnings logged ?
    Ive been using these three magic commands since Natty and they still work fine with precise, the part involving gedit doesent.
    Hmm.. What do you mean with "some usefull errors/warnings logged ?"

    Thanks.
    Your suggestions are appreciated.
    Last edited by louisgonick; April 29th, 2012 at 07:21 AM.

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
  •