Results 1 to 8 of 8

Thread: Atheros AR928X Wireless Not Working

  1. #1
    Join Date
    Oct 2012
    Location
    Eugene, Or
    Beans
    378
    Distro
    Ubuntu 18.04 Bionic Beaver

    Atheros AR928X Wireless Not Working

    Have MSI U123 Netbook with wireless "Qualcomm Atheros AR928X Wireless Network Adapter (PCI-Express) (rev 01)". Can Use Ethernet port for Internet. I have tried evrything that i have seen Here & Googled. Am doing something wrong or what?? Any Help would be Appreciated Thanks.
    The Answer Please if at all Possible

  2. #2
    Join Date
    Mar 2010
    Location
    India
    Beans
    8,116

    Re: Atheros AR928X Wireless Not Working

    Please follow the "Wireless Script" link in my signature, download and run the script as per instructions there, and post back the report it generates.

    While posting the outputs, please use 'Code' tags. It preserves the output's formatting and makes the post cleaner, compact and more readable. To see a quick 'HowTo' with screenshots, please follow the "Using Code Tags" link in my signature.
    Varun
    Help others by marking threads as [SOLVED], if they are. (See how)
    Wireless Script | Use Code Tags

  3. #3
    Join Date
    Oct 2012
    Location
    Eugene, Or
    Beans
    378
    Distro
    Ubuntu 18.04 Bionic Beaver

    Post Re: Atheros AR928X Wireless Not Working

    here is result of yer script
    Do not know to paste into box scrollbars. sorry

    Terminal Output
    craig@craig-MS-N033:~$ wget -N -t 5 -T 10 http://dl.dropbox.com/u/57264241/wireless_script && chmod +x wireless_script && ./wireless_script
    --2014-03-10 07:23:39-- http://dl.dropbox.com/u/57264241/wireless_script
    Resolving dl.dropbox.com (dl.dropbox.com)... 54.225.200.62
    Connecting to dl.dropbox.com (dl.dropbox.com)|54.225.200.62|:80... connected.
    HTTP request sent, awaiting response... 302 FOUND
    Location: http://dl.dropboxusercontent.com/u/5...ireless_script [following]
    --2014-03-10 07:23:39-- http://dl.dropboxusercontent.com/u/5...ireless_script
    Resolving dl.dropboxusercontent.com (dl.dropboxusercontent.com)... 107.20.190.74
    Connecting to dl.dropboxusercontent.com (dl.dropboxusercontent.com)|107.20.190.74|:80... connected.
    HTTP request sent, awaiting response... 200 OK
    Length: 4210 (4.1K) [text/plain]
    Saving to: ‘wireless_script’

    100%[======================================>] 4,210 --.-K/s in 0s

    Last-modified header missing -- time-stamps turned off.
    2014-03-10 07:23:40 (83.0 MB/s) - ‘wireless_script’ saved [4210/4210]

    [sudo] password for craig:


    wireless_script Output
    #!/bin/bash
    #
    # Copyright (c) 2012
    #
    # Authors: Wild Man, Krytarik
    # Helpers: anewguy, chili555, llua
    #
    # This script gathers the infos necessary for troubleshooting a wireless
    # connection and saves them in a text file, wrapping it in an archive if it
    # exceeds the size limit of 19.5 kB for .txt files on the Ubuntu Forums.
    #
    ################################################## ##########################
    #
    # This program is free software: you can redistribute it and/or modify
    # it under the terms of the GNU General Public License as published by
    # the Free Software Foundation, either version 3 of the License, or
    # (at your option) any later version.
    #
    # This program is distributed in the hope that it will be useful,
    # but WITHOUT ANY WARRANTY; without even the implied warranty of
    # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
    # GNU General Public License for more details.
    #
    # You should have received a copy of the GNU General Public License
    # along with this program. If not, see <http://www.gnu.org/licenses/>.
    #

    FILEBASE="wireless-info"
    MODMATCHES="(air|ar5|ath|carl|at7|iwl|ipw|rtl8|rt2 |rt3|8192cu|8192du|rt5|rt6|rt7|rtl|r818|r871|ssb|w l|b43|bcma|brcm|eth1|ndis|wlan0|firm|etork)[^[unct:] ]*"
    exec 3>&1 4>&2
    exec 1> $FILEBASE.txt 2> /dev/null
    if [ "$?" != "0" ]; then
    printf "\nCould not write target file \"$FILEBASE.txt\", aborting.\n\n"
    exit 1
    fi
    printf "\n*************** info trace ***************\n"
    printf "\n***** uname -a *****\n\n"
    uname -a
    printf "\n***** lsb_release *****\n\n"
    lsb_release -idrc
    printf "\n***** lspci *****\n\n"
    lspci -nnk | grep -iA2 net
    printf "\n***** lsusb *****\n\n"
    lsusb
    printf "\n***** PCMCIA Card Info *****\n\n"
    pccardctl info
    printf "\n***** iwconfig *****\n\n"
    iwconfig
    printf "\n***** rfkill *****\n\n"
    rfkill list all
    printf "\n***** iw reg get *****\n\n"
    iw reg get
    printf "\n***** route -n *****\n\n"
    route -n
    printf "\n***** lsmod *****\n\n"
    lsmod | egrep "(^|[[unct:] ])${MODMATCHES}([[unct:] ]|$)"
    printf "\n***** nm-tool *****\n"
    nm-tool
    printf "\n***** NetworkManager.state *****\n"
    cat /var/lib/NetworkManager/NetworkManager.state
    printf "\n***** NetworkManager.conf *****\n\n"
    grep -v '^#' /etc/NetworkManager/NetworkManager.conf
    if [ -f /etc/NetworkManager/nm-system-settings.conf ]; then
    printf "nm-system-settings.conf (used up to 10.04):\n"
    grep -v '^#' /etc/NetworkManager/nm-system-settings.conf
    fi
    printf "\n***** interfaces *****\n\n"
    cat /etc/network/interfaces | sed -r 's/wpa-psk [[:graph:]]+/wpa-psk <WPA key removed>/'
    printf "\n***** iwlist *****\n\n"
    if [ -t 0 ]; then
    sudo iwlist scan || echo "Aquiring of root rights failed."
    elif [ -x /usr/bin/gksudo ]; then
    gksudo iwlist scan || echo "Aquiring of root rights failed."
    elif [ -x /usr/bin/kdesudo ]; then
    kdesudo iwlist scan || echo "Aquiring of root rights failed."
    else
    echo "No way to aquire root rights found."
    fi
    printf "\n***** resolv.conf *****\n\n"
    grep -v '^#' /etc/resolv.conf
    printf "\n***** blacklist *****\n"
    for CONFFILE in /etc/modprobe.d/*.conf; do
    if [[ -n $(egrep -v '/etc/modprobe.d/(alsa-base|blacklist-(firewire|framebuffer|modem|oss|watchdog)|fglrx|nv idia)' <<< $CONFFILE) ]]; then
    BLACKLIST=$(grep '^blacklist' $CONFFILE)
    if [ -n "$BLACKLIST" ]; then
    printf "\n[%s]\n%s\n" $CONFFILE "$BLACKLIST"
    fi
    fi
    done
    printf "\n***** modinfo *****\n\n"
    MODULNAMES=$(lsmod | egrep "^$MODMATCHES" | awk '{print $1}')
    for MODULE in $MODULNAMES; do
    modinfo $MODULE
    echo
    done
    printf "\n***** udev rules *****\n"
    egrep '^(#.*device|[^#]|$)' /etc/udev/rules.d/70-persistent-net.rules
    printf "\n***** dmesg *****\n\n"
    dmesg | egrep "[[unct:] ]${MODMATCHES}[[unct:] ]"
    printf "\n****************** done ******************\n\n"
    exec 1>&3 3>&-
    exec 2>&4 4>&-
    sed -r -i 's/([[:alnum:]][[:alnum:]]{5}[[:alnum:]][[:alnum:]]/<MAC address removed>/' $FILEBASE.txt
    if [ $(stat -c %s $FILEBASE.txt) -gt 19968 ]; then
    tar -czf $FILEBASE.tar.gz $FILEBASE.txt
    rm -f $FILEBASE.txt
    printf "\nResults archived in \"%s.tar.gz\", as they exceed the 19.5 kB size limit for .txt files on the Ubuntu Forums.\n\n" "$FILEBASE"
    else
    printf "\nResults saved in \"%s.txt\".\n\n" "$FILEBASE"
    fi
    The Answer Please if at all Possible

  4. #4
    Join Date
    Oct 2012
    Location
    Eugene, Or
    Beans
    378
    Distro
    Ubuntu 18.04 Bionic Beaver

    Post Re: Atheros AR928X Wireless Not Working

    Here is Results with yer Script. trying with code tags

    Code:
    #!/bin/bash
    #
    # Copyright (c) 2012
    #
    # Authors: Wild Man, Krytarik
    # Helpers: anewguy, chili555, llua
    #
    # This script gathers the infos necessary for troubleshooting a wireless
    # connection and saves them in a text file, wrapping it in an archive if it
    # exceeds the size limit of 19.5 kB for .txt files on the Ubuntu Forums.
    #
    ############################################################################
    #
    # This program is free software: you can redistribute it and/or modify
    # it under the terms of the GNU General Public License as published by
    # the Free Software Foundation, either version 3 of the License, or
    # (at your option) any later version.
    #
    # This program is distributed in the hope that it will be useful,
    # but WITHOUT ANY WARRANTY; without even the implied warranty of
    # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    # GNU General Public License for more details.
    #
    # You should have received a copy of the GNU General Public License
    # along with this program.  If not, see <http://www.gnu.org/licenses/>.
    #
    
    FILEBASE="wireless-info"
    MODMATCHES="(air|ar5|ath|carl|at7|iwl|ipw|rtl8|rt2|rt3|8192cu|8192du|rt5|rt6|rt7|rtl|r818|r871|ssb|wl|b43|bcma|brcm|eth1|ndis|wlan0|firm|etork)[^[:punct:] ]*"
    exec 3>&1 4>&2
    exec 1> $FILEBASE.txt 2> /dev/null
    if [ "$?" != "0" ]; then
        printf "\nCould not write target file \"$FILEBASE.txt\", aborting.\n\n"
        exit 1
    fi
    printf "\n*************** info trace ***************\n"
    printf "\n***** uname -a *****\n\n"
    uname -a
    printf "\n***** lsb_release *****\n\n"
    lsb_release -idrc
    printf "\n***** lspci *****\n\n"
    lspci -nnk | grep -iA2 net
    printf "\n***** lsusb *****\n\n"
    lsusb
    printf "\n***** PCMCIA Card Info *****\n\n"
    pccardctl info
    printf "\n***** iwconfig *****\n\n"
    iwconfig
    printf "\n***** rfkill *****\n\n"
    rfkill list all
    printf "\n***** iw reg get *****\n\n"
    iw reg get
    printf "\n***** route -n *****\n\n"
    route -n
    printf "\n***** lsmod *****\n\n"
    lsmod | egrep "(^|[[:punct:] ])${MODMATCHES}([[:punct:] ]|$)"
    printf "\n***** nm-tool *****\n"
    nm-tool
    printf "\n***** NetworkManager.state *****\n"
    cat /var/lib/NetworkManager/NetworkManager.state
    printf "\n***** NetworkManager.conf *****\n\n"
    grep -v '^#' /etc/NetworkManager/NetworkManager.conf
    if [ -f /etc/NetworkManager/nm-system-settings.conf ]; then
        printf "nm-system-settings.conf (used up to 10.04):\n"
        grep -v '^#' /etc/NetworkManager/nm-system-settings.conf
    fi
    printf "\n***** interfaces *****\n\n"
    cat /etc/network/interfaces | sed -r 's/wpa-psk [[:graph:]]+/wpa-psk <WPA key removed>/'
    printf "\n***** iwlist *****\n\n"
    if [ -t 0 ]; then
        sudo iwlist scan || echo "Aquiring of root rights failed."
    elif [ -x /usr/bin/gksudo ]; then
        gksudo iwlist scan || echo "Aquiring of root rights failed."
    elif [ -x /usr/bin/kdesudo ]; then
        kdesudo iwlist scan || echo "Aquiring of root rights failed."
    else
        echo "No way to aquire root rights found."
    fi
    printf "\n***** resolv.conf *****\n\n"
    grep -v '^#' /etc/resolv.conf
    printf "\n***** blacklist *****\n"
    for CONFFILE in /etc/modprobe.d/*.conf; do
        if [[ -n $(egrep -v '/etc/modprobe.d/(alsa-base|blacklist-(firewire|framebuffer|modem|oss|watchdog)|fglrx|nvidia)' <<< $CONFFILE) ]]; then
        BLACKLIST=$(grep '^blacklist' $CONFFILE)
        if [ -n "$BLACKLIST" ]; then
            printf "\n[%s]\n%s\n" $CONFFILE "$BLACKLIST"
        fi
        fi
    done
    printf "\n***** modinfo *****\n\n"
    MODULNAMES=$(lsmod | egrep "^$MODMATCHES" | awk '{print $1}')
    for MODULE in $MODULNAMES; do
        modinfo $MODULE
        echo
    done
    printf "\n***** udev rules *****\n"
    egrep '^(#.*device|[^#]|$)' /etc/udev/rules.d/70-persistent-net.rules
    printf "\n***** dmesg *****\n\n"
    dmesg | egrep "[[:punct:] ]${MODMATCHES}[[:punct:] ]"
    printf "\n****************** done ******************\n\n"
    exec 1>&3 3>&-
    exec 2>&4 4>&-
    sed -r -i 's/([[:alnum:]][[:alnum:]]:){5}[[:alnum:]][[:alnum:]]/<MAC address removed>/' $FILEBASE.txt
    if [ $(stat -c %s $FILEBASE.txt) -gt 19968 ]; then
        tar -czf $FILEBASE.tar.gz $FILEBASE.txt
        rm -f $FILEBASE.txt
        printf "\nResults archived in \"%s.tar.gz\", as they exceed the 19.5 kB size limit for .txt files on the Ubuntu Forums.\n\n" "$FILEBASE"
    else
        printf "\nResults saved in \"%s.txt\".\n\n" "$FILEBASE"
    fi
    if you need anything more let me plz
    Last edited by Redalien0304; March 10th, 2014 at 03:46 PM.
    The Answer Please if at all Possible

  5. #5
    Join Date
    Mar 2010
    Location
    India
    Beans
    8,116

    Re: Atheros AR928X Wireless Not Working

    What you have posted is the script itself. I already have plenty of copies of it

    What I need is the report file that it must have generated - "wireless-info.txt" or "wireless-info.tar.gz" file. It should be in your Home directory.
    Varun
    Help others by marking threads as [SOLVED], if they are. (See how)
    Wireless Script | Use Code Tags

  6. #6
    Join Date
    Oct 2012
    Location
    Eugene, Or
    Beans
    378
    Distro
    Ubuntu 18.04 Bionic Beaver

    Post Re: Atheros AR928X Wireless Not Working

    Here is Results with yer Script. Sorry about that Wrong File.

    Code:
     
    *************** info trace ***************
    
    ***** uname -a *****
    
    Linux craig-MS-N033 3.11.0-18-generic #32-Ubuntu SMP Tue Feb 18 21:13:28 UTC 2014 i686 i686 i686 GNU/Linux
    
    ***** lsb_release *****
    
    Distributor ID:    Ubuntu
    Description:    Ubuntu 13.10
    Release:    13.10
    Codename:    saucy
    
    ***** lspci *****
    
    01:00.0 Ethernet controller [0200]: Realtek Semiconductor Co., Ltd. RTL8101E/RTL8102E PCI Express Fast Ethernet controller [10ec:8136] (rev 02)
        Subsystem: Micro-Star International Co., Ltd. Device [1462:100a]
        Kernel driver in use: r8169
    02:00.0 Network controller [0280]: Qualcomm Atheros AR928X Wireless Network Adapter (PCI-Express) [168c:002a] (rev 01)
        Subsystem: AzureWave AW-NE771 802.11bgn Wireless Mini PCIe Card [AR9281] [1a3b:1067]
        Kernel driver in use: ath9k
    
    ***** lsusb *****
    
    Bus 001 Device 003: ID 0bda:0158 Realtek Semiconductor Corp. USB 2.0 multicard reader
    Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
    Bus 005 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
    Bus 004 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
    Bus 003 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
    Bus 002 Device 002: ID 046d:c52b Logitech, Inc. Unifying Receiver
    Bus 002 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
    
    ***** PCMCIA Card Info *****
    
    
    ***** iwconfig *****
    
    wlan0     IEEE 802.11bgn  ESSID:off/any  
              Mode:Managed  Access Point: Not-Associated   Tx-Power=off   
              Retry  long limit:7   RTS thr:off   Fragment thr:off
              Power Management:off
              
    
    ***** rfkill *****
    
    0: phy0: Wireless LAN
        Soft blocked: no
        Hard blocked: yes
    
    ***** iw reg get *****
    
    country 00:
        (2402 - 2472 @ 40), (3, 20)
        (2457 - 2482 @ 40), (3, 20), PASSIVE-SCAN, NO-IBSS
        (2474 - 2494 @ 20), (3, 20), NO-OFDM, PASSIVE-SCAN, NO-IBSS
        (5170 - 5250 @ 40), (3, 20), PASSIVE-SCAN, NO-IBSS
        (5735 - 5835 @ 40), (3, 20), PASSIVE-SCAN, NO-IBSS
    
    ***** route -n *****
    
    Kernel IP routing table
    Destination     Gateway         Genmask         Flags Metric Ref    Use Iface
    0.0.0.0         192.168.1.1     0.0.0.0         UG    0      0        0 eth0
    192.168.1.0     0.0.0.0         255.255.255.0   U     1      0        0 eth0
    
    ***** lsmod *****
    
    ath9k                 136257  0 
    ath9k_common           13619  1 ath9k
    ath9k_hw              429197  2 ath9k_common,ath9k
    ath                    19187  3 ath9k_common,ath9k,ath9k_hw
    mac80211              517444  1 ath9k
    cfg80211              401762  3 ath,ath9k,mac80211
    
    ***** nm-tool *****
    
    NetworkManager Tool
    
    State: connected (global)
    
    - Device: wlan0 ----------------------------------------------------------------
      Type:              802.11 WiFi
      Driver:            ath9k
      State:             unavailable
      Default:           no
      HW Address:        <MAC address removed>
    
      Capabilities:
    
      Wireless Properties
        WEP Encryption:  yes
        WPA Encryption:  yes
        WPA2 Encryption: yes
    
      Wireless Access Points 
    
    
    - Device: eth0  [Wired connection 1] -------------------------------------------
      Type:              Wired
      Driver:            r8169
      State:             connected
      Default:           yes
      HW Address:        <MAC address removed>
    
      Capabilities:
        Carrier Detect:  yes
        Speed:           100 Mb/s
    
      Wired Properties
        Carrier:         on
    
      IPv4 Settings:
        Address:         192.168.1.107
        Prefix:          24 (255.255.255.0)
        Gateway:         192.168.1.1
    
        DNS:             192.168.0.1
        DNS:             192.168.1.1
    
    
    
    ***** NetworkManager.state *****
    [main]
    NetworkingEnabled=true
    WirelessEnabled=true
    WWANEnabled=true
    WimaxEnabled=true
    
    ***** NetworkManager.conf *****
    
    [main]
    plugins=ifupdown,keyfile,ofono
    dns=dnsmasq
    
    [ifupdown]
    managed=false
    
    ***** interfaces *****
    
    # interfaces(5) file used by ifup(8) and ifdown(8)
    auto lo
    iface lo inet loopback
    
    ***** iwlist *****
    
    
    ***** resolv.conf *****
    
    nameserver 127.0.1.1
    
    ***** blacklist *****
    
    [/etc/modprobe.d/blacklist-ath_pci.conf]
    blacklist ath_pci
    
    [/etc/modprobe.d/blacklist.conf]
    blacklist evbug
    blacklist usbmouse
    blacklist usbkbd
    blacklist eepro100
    blacklist de4x5
    blacklist eth1394
    blacklist snd_intel8x0m
    blacklist snd_aw2
    blacklist i2c_i801
    blacklist prism54
    blacklist bcm43xx
    blacklist garmin_gps
    blacklist asus_acpi
    blacklist snd_pcsp
    blacklist pcspkr
    blacklist amd76x_edac
    blacklist acer_wmi
    
    ***** modinfo *****
    
    filename:       /lib/modules/3.11.0-18-generic/kernel/drivers/net/wireless/ath/ath9k/ath9k.ko
    license:        Dual BSD/GPL
    description:    Support for Atheros 802.11n wireless LAN cards.
    author:         Atheros Communications
    srcversion:     9960BB0B644BE14E4A2F42B
    alias:          platform:qca955x_wmac
    alias:          platform:ar934x_wmac
    alias:          platform:ar933x_wmac
    alias:          platform:ath9k
    alias:          pci:v0000168Cd00000036sv*sd*bc*sc*i*
    alias:          pci:v0000168Cd00000037sv*sd*bc*sc*i*
    alias:          pci:v0000168Cd00000034sv*sd*bc*sc*i*
    alias:          pci:v0000168Cd00000034sv000010CFsd00001783bc*sc*i*
    alias:          pci:v0000168Cd00000034sv000014CDsd00000064bc*sc*i*
    alias:          pci:v0000168Cd00000034sv000014CDsd00000063bc*sc*i*
    alias:          pci:v0000168Cd00000034sv0000103Csd00001864bc*sc*i*
    alias:          pci:v0000168Cd00000034sv000011ADsd00006641bc*sc*i*
    alias:          pci:v0000168Cd00000034sv000011ADsd00006631bc*sc*i*
    alias:          pci:v0000168Cd00000034sv00001043sd0000850Ebc*sc*i*
    alias:          pci:v0000168Cd00000034sv00001A3Bsd00002110bc*sc*i*
    alias:          pci:v0000168Cd00000034sv00001969sd00000091bc*sc*i*
    alias:          pci:v0000168Cd00000034sv000017AAsd00003214bc*sc*i*
    alias:          pci:v0000168Cd00000034sv0000168Csd00003117bc*sc*i*
    alias:          pci:v0000168Cd00000034sv000011ADsd00006661bc*sc*i*
    alias:          pci:v0000168Cd00000034sv00001A3Bsd00002116bc*sc*i*
    alias:          pci:v0000168Cd00000033sv*sd*bc*sc*i*
    alias:          pci:v0000168Cd00000032sv*sd*bc*sc*i*
    alias:          pci:v0000168Cd00000032sv0000105Bsd0000E075bc*sc*i*
    alias:          pci:v0000168Cd00000032sv00001A3Bsd00002152bc*sc*i*
    alias:          pci:v0000168Cd00000032sv00001A3Bsd00002126bc*sc*i*
    alias:          pci:v0000168Cd00000032sv00001A3Bsd00001237bc*sc*i*
    alias:          pci:v0000168Cd00000032sv00001A3Bsd00002086bc*sc*i*
    alias:          pci:v0000168Cd00000030sv*sd*bc*sc*i*
    alias:          pci:v0000168Cd0000002Esv*sd*bc*sc*i*
    alias:          pci:v0000168Cd0000002Dsv*sd*bc*sc*i*
    alias:          pci:v0000168Cd0000002Csv*sd*bc*sc*i*
    alias:          pci:v0000168Cd0000002Bsv*sd*bc*sc*i*
    alias:          pci:v0000168Cd0000002Asv*sd*bc*sc*i*
    alias:          pci:v0000168Cd00000029sv*sd*bc*sc*i*
    alias:          pci:v0000168Cd00000027sv*sd*bc*sc*i*
    alias:          pci:v0000168Cd00000024sv*sd*bc*sc*i*
    alias:          pci:v0000168Cd00000023sv*sd*bc*sc*i*
    depends:        ath9k_hw,ath9k_common,mac80211,ath,cfg80211
    intree:         Y
    vermagic:       3.11.0-18-generic SMP mod_unload modversions 686 
    parm:           debug:Debugging mask (uint)
    parm:           nohwcrypt:Disable hardware encryption (int)
    parm:           blink:Enable LED blink on activity (int)
    parm:           btcoex_enable:Enable wifi-BT coexistence (int)
    parm:           enable_diversity:Enable Antenna diversity for AR9565 (int)
    
    filename:       /lib/modules/3.11.0-18-generic/kernel/drivers/net/wireless/ath/ath9k/ath9k_common.ko
    license:        Dual BSD/GPL
    description:    Shared library for Atheros wireless 802.11n LAN cards.
    author:         Atheros Communications
    srcversion:     2DB88A2876852DC1D8C5A1D
    depends:        ath,ath9k_hw
    intree:         Y
    vermagic:       3.11.0-18-generic SMP mod_unload modversions 686 
    
    filename:       /lib/modules/3.11.0-18-generic/kernel/drivers/net/wireless/ath/ath9k/ath9k_hw.ko
    license:        Dual BSD/GPL
    description:    Support for Atheros 802.11n wireless LAN cards.
    author:         Atheros Communications
    srcversion:     6F97CF09431D08603B6A91A
    depends:        ath
    intree:         Y
    vermagic:       3.11.0-18-generic SMP mod_unload modversions 686 
    
    filename:       /lib/modules/3.11.0-18-generic/kernel/drivers/net/wireless/ath/ath.ko
    license:        Dual BSD/GPL
    description:    Shared library for Atheros wireless LAN cards.
    author:         Atheros Communications
    srcversion:     A890CDBC88E6EF28CD751DD
    depends:        cfg80211
    intree:         Y
    vermagic:       3.11.0-18-generic SMP mod_unload modversions 686 
    
    
    ***** udev rules *****
    
    # PCI device 0x10ec:0x8136 (r8169)
    SUBSYSTEM=="net", ACTION=="add", DRIVERS=="?*", ATTR{address}=="<MAC address removed>", ATTR{dev_id}=="0x0", ATTR{type}=="1", KERNEL=="eth*", NAME="eth0"
    
    # PCI device 0x168c:0x002a (ath9k)
    SUBSYSTEM=="net", ACTION=="add", DRIVERS=="?*", ATTR{address}=="<MAC address removed>", ATTR{dev_id}=="0x0", ATTR{type}=="1", KERNEL=="wlan*", NAME="wlan0"
    
    ***** dmesg *****
    
    [   23.290819] ath: EEPROM regdomain: 0x60
    [   23.290830] ath: EEPROM indicates we should expect a direct regpair map
    [   23.290841] ath: Country alpha2 being used: 00
    [   23.290846] ath: Regpair used: 0x60
    [   26.106311] IPv6: ADDRCONF(NETDEV_UP): wlan0: link is not ready
    
    ****************** done ******************
    If you need anything more just let me know. thanks for the help
    The Answer Please if at all Possible

  7. #7
    Join Date
    Oct 2012
    Location
    Eugene, Or
    Beans
    378
    Distro
    Ubuntu 18.04 Bionic Beaver

    Smile Re: Atheros AR928X Wireless Not Working

    Solved my Problem it was Hardware Switch Fn F11. Wireless now working. No Ether Tether. tried to make this thread Solved but do see the option. Thanks
    The Answer Please if at all Possible

  8. #8
    Join Date
    Mar 2010
    Location
    India
    Beans
    8,116

    Re: Atheros AR928X Wireless Not Working

    Use the "Thread Tools" link above the top post, that's where "Mark as Solved" option is located.

    Follow the "See how" link in my signature below to see screenshots of it.
    Varun
    Help others by marking threads as [SOLVED], if they are. (See how)
    Wireless Script | Use Code Tags

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
  •