How to resolve Ubuntu 16.04 bug with Qualcomm Atheros network card

Asked

Viewed 626 times

-3

Article: Some steps to be taken:

Perform the configuration:

echo "options ath10k_core skip_otp=y" | sudo tee /etc/modprobe.d/ath10k_core.conf

Download the repository and copy the drivers

git clone https://github.com/kvalo/ath10k-firmware.git
sudo cp -r ath10k-firmware/QCA9377 /lib/firmware/ath10k/
sudo cp /lib/firmware/ath10k/QCA9377/hw1.0/WLAN.TF.1.0/firmware-5.bin_WLAN.TF.1.0-00002-QCATFSWPZ-5 /lib/firmware/ath10k/QCA9377/hw1.0/firmware-5.bin
  • 5

    Your question does not belong to the scope of this website. Read more on: https://answall.com/help/on-topic

1 answer

-3


Try the sequence of commands to see if it helps you:

sudo apt-get update
sudo apt-get install git
git clone https://github.com/kvalo/ath10k-firmware.git
sudo mkdir /lib/firmware/ath10k/QCA9377
sudo mkdir /lib/firmware/ath10k/QCA9377/hw1.0
cd ath10k-firmware/QCA9377/hw1.0
sudo cp *  /lib/firmware/ath10k/QCA9377/hw1.0
cd /lib/firmware/ath10k/QCA9377/hw1.0
sudo mv firmware-5.bin_WLAN.TF.1.0-00267-1  firmware-5.bin

Restart and your wifi should work.

  • 2

    Any apparent reason for downvote ?

  • 2

    The downvote is not mine, but I suspect your motive is related to being considered off topic.

  • 1

    @Isac even being off it doesn’t hurt to try to help

  • By answering you encourage the user to ask this kind of question here and the loophole for others to do the same. You can help in the comments if you want, responding, usually the result is always this.

Browser other questions tagged

You are not signed in. Login or sign up in order to post.