Skip to content

Instantly share code, notes, and snippets.

@yavorski
Last active February 14, 2025 20:08
Show Gist options
  • Save yavorski/65440c9562ce46775a8cda6a5e5368fa to your computer and use it in GitHub Desktop.
Save yavorski/65440c9562ce46775a8cda6a5e5368fa to your computer and use it in GitHub Desktop.
no wi-fi fix

no wi-fi

  • Qualcomm Inc QCNFA765
  • Kernel driver in use: ath11k_pci

fix

iwctl device list
iwctl station wlan0 scan
iwctl station wlan0 get-networks
iwctl station wlan0 connect <SSID>
sudo journalctl -xb -p3
sudo dmesg | grep firmware

sudo dmesg | grep ath11k_pci
sudo journalctl -b | grep ath11k_pci

rfkill
rfkill list
rfkill unblock all

# disable tlp
sudo systemctl stop tlp
sudo systemctl disable tlp

# remove kernel module
modprobe --remove ath11k_pci
modprobe --remove ath11k

# reload kernel modules
modprobe ath11k
modprobe ath11k_pci

systemd-boot

Add the following parameters to the options line:

pcie_aspm=off pci=noaer
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment