Skip to content

Instantly share code, notes, and snippets.

@pauricthelodger
Forked from Samffy/xps13.md
Created July 29, 2018 22:05
Show Gist options
  • Save pauricthelodger/25123deb8471e331a9597b53b57a78e1 to your computer and use it in GitHub Desktop.
Save pauricthelodger/25123deb8471e331a9597b53b57a78e1 to your computer and use it in GitHub Desktop.
Dell XPS 13 9360 : Ubuntu Wifi disconnection

I encounter wifi disonnection problem on a Dell XPS 13 9360. Here is the solution I used to fix this bad behavior.

Which wifi card version is installed ?

lspci | grep -i net

3a:00.0 Network controller: Qualcomm Atheros QCA6174 802.11ac Wireless Network Adapter (rev 32)

Here, we have the QCA6174 model.

Retrieve last driver version on :

https://github.com/kvalo/ath10k-firmware

Replace wifi firmware firmware-6.bin

cd /lib/firmware/ath10k/QCA6174/hw3.0
sudo cp firmware-6.bin firmware-6.bin.backup
sudo cp <downloaded_file> firmware-6.bin

Update path using your wifi card model : /lib/firmware/ath10k/<wifi_card_model>/hw3.0

Reload drivers

sudo modprobe -r ath10k_pci ath10k_core
sudo modprobe ath10k_pci
sudo modprobe ath10k_core
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment