Page 2 of 7 FirstFirst 1234 ... LastLast
Results 11 to 20 of 63

Thread: QCA9377 and no wireless network adapter Ubuntu 15.04

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

    Re: QCA9377 and no wireless network adapter Ubuntu 15.04

    ath10k_pci 0000:03:00.0: could not fetch firmware file 'ath10k/QCA9377/hw1.0/firmware-5.bin': -2
    However, we have:
    drwxr-xr-x 2 root root 4096 лис 26 18:02 .
    drwxr-xr-x 3 root root 4096 лис 24 23:47 ..
    -rw-r--r-- 1 root root 8124 лис 26 18:01 board.bin
    -rw-r--r-- 1 root root 605908 лис 26 18:02 firmware5.bin
    -rw-r--r-- 1 root root 605908 лис 25 00:31 firmware-5.bin_WLAN.TF.1.0-00267-1
    -rw-r--r-- 1 root root 46142 лис 25 00:31 notice.txt_WLAN.TF.1.0-00267-1
    ...with no hyphen. I apologize for the typographical error. I am sorry for my mis-step. Please do:
    Code:
    cd /lib/firmware/ath10k/QCA9377/hw1.0
    sudo mv firmware5.bin  firmware-5.bin
    Reboot.

    -----
    Thanks, Jeremy. I appreciate the help.
    "Oh, Ubuntu, you are my favorite Linux-based operating system" --Dr. Sheldon Cooper, B.Sc., M.Sc., M.A., Ph.D., Sc.D.

  2. #12
    Join Date
    Nov 2015
    Beans
    4

    Re: QCA9377 and no wireless network adapter Ubuntu 15.04

    Hi, yes it works after rename of firmware file!!!

    chili555

    I'm really appreciate your help.
    Many, many thanks!!!

  3. #13
    Join Date
    Oct 2011
    Beans
    31

    Re: QCA9377 and no wireless network adapter Ubuntu 15.04

    Chili555,
    Seems the fw nomenclature bug is still there.

    Chili555,
    Btw, i do have the device and would be glad to help with testing, should the need arise henceforth.
    Last edited by howefield; January 11th, 2016 at 11:48 AM.

  4. #14
    Join Date
    Oct 2015
    Beans
    1

    Thumbs up Re: QCA9377 and no wireless network adapter Ubuntu 15.04

    Quote Originally Posted by chili555 View Post
    However, we have:...with no hyphen. I apologize for the typographical error. I am sorry for my mis-step. Please do:
    Code:
    cd /lib/firmware/ath10k/QCA9377/hw1.0
    sudo mv firmware5.bin  firmware-5.bin
    Reboot.

    -----
    Thanks, Jeremy. I appreciate the help.
    Thanks chili555. You saved my day

  5. #15
    Join Date
    Dec 2015
    Location
    Inside a human body
    Beans
    23
    Distro
    Kubuntu 15.10 Wily Werewolf

    Re: QCA9377 and no wireless network adapter Ubuntu 15.04

    Haha, Thanks everyone. It fixed my wireless too. I'm using Acer Aspire e5-473g-56k4. Finally found this thread after hours of googling.

  6. #16
    Join Date
    Jul 2007
    Location
    Murcia, Spain
    Beans
    34
    Distro
    Ubuntu 10.04 Lucid Lynx

    Re: QCA9377 and no wireless network adapter Ubuntu 15.04

    Thank you very much for this!!
    After following the instructions and copying the firmware I was able to make the wifi work!

    However, I'm a bit worried about a kernel upgrade breaking the fix, and having to recompile and reinstall manually again.
    This laptop is my father's, and he is not savvy enough to do that by himself, so I was wondering if it is possible to write a command to rebuild the module automatically when a new kernel is installed.

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

    Re: QCA9377 and no wireless network adapter Ubuntu 15.04

    Quote Originally Posted by Chikitulfo View Post
    Thank you very much for this!!
    After following the instructions and copying the firmware I was able to make the wifi work!

    However, I'm a bit worried about a kernel upgrade breaking the fix, and having to recompile and reinstall manually again.
    This laptop is my father's, and he is not savvy enough to do that by himself, so I was wondering if it is possible to write a command to rebuild the module automatically when a new kernel is installed.
    There probably is, but I haven't any idea how to do it. Scripting isn't my area of limited expertise.

    You could easily write commands in /etc/rc.local to recompile every time the machine is booted; something like:
    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.
    
    cd /home/poppa/backports-20151120
    make clean
    make defconfig-ath10k
    make
    make install
    
    exit 0
    However, this will be a bit time consuming, Poppa may complain that it takes three minutes to boot!

    You could instead freeze the linux-image package from being updated:
    Code:
    sudo apt-mark hold linux-image-generic linux-headers-generic
    I think the best approach is to install a later mainline kernel that includes the driver and won't be updated by Update Manager.

    http://kernel.ubuntu.com/~kernel-ppa...e/v4.3.3-wily/

    If you need a step-by-step, post back and I'll be happy to help.
    "Oh, Ubuntu, you are my favorite Linux-based operating system" --Dr. Sheldon Cooper, B.Sc., M.Sc., M.A., Ph.D., Sc.D.

  8. #18
    Join Date
    Jan 2016
    Beans
    2

    Re: QCA9377 and no wireless network adapter Ubuntu 15.04

    Hello.

    I have an Acer Aspire E5-574G-57ZD.

    I have been trying to install Ubuntu for almost a month now. Ubuntu is working fine, Wlan is not. .


    I have followed the advice given in the first 10 answers to this thread.


    When I type:

    dmesg | grep ath


    There is no output.


    Yet I still do not have wlan, even after a reboot.


    Please, could anyone help me?


    Thanks a lot

  9. #19
    Join Date
    May 2014
    Location
    /home
    Beans
    10,942
    Distro
    Ubuntu 20.04 Focal Fossa

    Re: QCA9377 and no wireless network adapter Ubuntu 15.04

    Post
    Code:
    lspci -nnk | grep -iA2 net; uname -a

  10. #20
    Join Date
    Jan 2016
    Beans
    2

    RE: QCA9377 and no wireless network adapter Ubuntu 15.04

    02:00.0 Ethernet controller [0200]: Realtek Semiconductor Co., Ltd. RTL8111/8168/8411 PCI Express Gigabit Ethernet Controller [10ec:8168] (rev 15)
    Subsystem: Acer Incorporated [ALI] Device [1025:100c]
    Kernel driver in use: r8169
    03:00.0 Network controller [0280]: Qualcomm Atheros Device [168c:0042] (rev 30)
    Subsystem: Lite-On Communications Inc Device [11ad:0806]
    Linux anweber-Aspire-E5-574G 4.2.0-22-generic #27-Ubuntu SMP Thu Dec 17 22:57:22 UTC 2015 i686 i686 i686 GNU/Linux

    The thing is, I had it working on the bootstick yesterday by following first your post and then afterwards
    http://askubuntu.com/questions/70135...o-with-14-04-3

    But I then had to use another bootstick for installation.

    With this one I tried what is in the link first, to no avail.

    I do not seem to have the firmwareproblem though, as I am not getting these errors.

    Now I am sorry I wrote this post.

    I followed through with the post I linked and then with what you recommended and now it works like a charm.
    So do not trouble yourself over my post.

    This is Acer Aspire E 5-574g-57ZD



    And thank you thank you thank you so much for these posts!
    Last edited by howefield; January 11th, 2016 at 11:49 AM.

Page 2 of 7 FirstFirst 1234 ... LastLast

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
  •