Results 1 to 5 of 5

Thread: Change in kernel version stops networking

  1. #1
    Join Date
    Mar 2013
    Beans
    54

    Change in kernel version stops networking

    I'm running 12.10 and have an Atheros 8161 chipset wired ethernet card. My understanding is that support for my eth is now built-in to the kernel, but everytime the kernel changes, I have to re-compile my driver (compat-wireless) to get networking operational again. It happened when I went from 3.5.0.-17 to -26 a few weeks ago; and again earlier today when I went from -26 to -27.

    Is it possible that my compiled driver is getting in the way of the native kernel driver, and if so, how do I get rid of the compiled driver so the native one can be "first in line"? Or is there some other way to accomplish the same thing? Or do I just have the wrong hypothesis in the first place?

    Thanks, in advance, for your help.

    John
    Last edited by johncroc; April 18th, 2013 at 10:45 PM. Reason: Added relevant kernel version info, corrected a mispelling

  2. #2
    Join Date
    Apr 2010
    Location
    Somerset UK
    Beans
    4
    Distro
    Ubuntu 10.04 Lucid Lynx

    Re: Change in kernel version stops networking

    Same problem here, any advice?

  3. #3
    Join Date
    Mar 2013
    Beans
    54

    Re: Change in kernel version stops networking

    Assuming you're not "down" and that you know how to do the recompile, I don't have a clue (yet) regarding the need to recompile. If, however, you are asking for advice on doing the recompile, I'm happy to help. It's very simple really (assuming you still have the compat-wireless package). First, in a terminal window, go to the directory where that stuff is stored, then issue a
    Code:
    make
    Next:
    Code:
    sudo make unload
    Then:
    Code:
    sudo make install
    Finally:
    Code:
    sudo modprobe alx
    At least for me, that always works.

  4. #4
    Join Date
    Mar 2013
    Beans
    54

    Re: Change in kernel version stops networking

    bump

  5. #5
    Join Date
    Aug 2005
    Location
    South Carolina, USA
    Beans
    26,047
    Distro
    Ubuntu Development Release

    Re: Change in kernel version stops networking

    At least for me, that always works.
    And are you saying that this time it did not? May we see:
    Code:
    sudo modprobe alx
    dmesg | grep alx
    The process I'd recommend instead is:
    Code:
    cd Desktop/compat-wherever
    sudo su
    modprobe -r alx
    ./scripts/driver-select restore
    ./scripts/driver-select alx
    make clean
    make
    make install
    modprobe alx
    exit
    Note any errors and post them here.
    "Oh, Ubuntu, you are my favorite Linux-based operating system" --Dr. Sheldon Cooper, B.Sc., M.Sc., M.A., Ph.D., Sc.D.

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
  •