0

I am trying to establish a wireless connection but it's not connecting. I searched for the wireless driver but was not found. Please instruct me how to install the wireless driver.

Vishnu N K
  • 595
  • 5
  • 22

1 Answers1

0

I have a Notebook Acer E5-574G-77Z7 I was unable to install ubuntu 16.04 in dual boot with Windows 10 secure boot enabled, as the restart does not show the grub menu. I tried it in live mode. To solve the wireless driver problem I followed as described to this page: http://p-s.co.nz/wordpress/dual-boot-ubuntu-16-04-on-win-10-acer-aspire-e15/

open a terminal

sudo mkdir /lib/firmware/ath10k/QCA9377/
sudo mkdir /lib/firmware/ath10k/QCA9377/hw1.0

If it reports that the file already exists, that’s fine, just continue.

With a temporary working internet connection:

sudo apt-get install git
git clone https://github.com/kvalo/ath10k-firmware.git
cd ath10k-firmware/QCA9377/hw1.0
sudo cp board.bin /lib/firmware/ath10k/QCA9377/hw1.0
sudo cp firmware-5.bin_WLAN.TF.1.0-00267-1 /lib/firmware/ath10k/QCA9377/hw1.0/firmware-5.bin
sudo modprobe -r ath10k_pci
sudo modprobe ath10k_pci

Your wireless should be working; if not, try a reboot.