Új hozzászólás Aktív témák

  • bucihost

    senior tag

    válasz ebegab92 #105179 üzenetére

    Please get a temporary wired ethernet connection and do:

    Code:
    sudo apt-get install linux-headers-generic build-essential
    I suggest you download this to your desktop: https://www.kernel.org/pub/linux/ker...12.2-1.tar.bz2 Right-click it and select 'Extract Here.' Now open a terminal and do:

    Code:
    cd ~/Desktop/backports-3.12.2-1/
    make defconfig-ath9k
    make
    sudo make install
    sudo modprobe -r ath9k && sudo modprobe ath9k
    Your wireless should now be working. You will have compiled the driver for your currently running kernel only. When Update Manager installs a later linux-image, after reboot, re-compile:

    Code:
    cd ~/Desktop/backports-3.12.2-1/
    make clean
    make defconfig-ath9k
    make
    sudo make install
    sudo modprobe -r ath9k && sudo modprobe ath9k

    Please reboot. Check to see if the module ath9k is loaded:
    Code:
    lsmod | grep ath9k
    If not, load it:
    Code:
    sudo modprobe ath9k
    Then add it to the list of modules that are to loaded automatically:
    Code:
    sudo -i
    echo ath9k >> /etc/modules
    exit
    You should be all set.

    Ezt próbáltad már? igaz ez 12-es ubuntuhoz vanló leírás, de gondolom frissebb verziókkal is jó, csak a blackports verzióból nagyobb kell :)

    [ Szerkesztve ]

Új hozzászólás Aktív témák