Fixing Wi-Fi Drops on Ubuntu | Generated by AI

Home PDF

Wi-Fi disconnections on Ubuntu while wired connections remain stable can be caused by several factors. Here’s a step-by-step guide to diagnose and fix the issue:


1. Check for Driver Issues

Your MSI B760M Mortar WiFi motherboard likely uses an Intel Wi-Fi 6E AX211/AX210 card. While Intel drivers are generally well-supported in Linux, issues can still arise.

Steps:


2. Disable Power Saving for Wi-Fi

Linux sometimes aggressively powers down the Wi-Fi card to save energy, causing drops.

Steps:


3. Check for Interference or Router Issues


4. Disable IPv6

Some routers/ISPs have IPv6 compatibility issues.

Steps:


5. Update Kernel & NetworkManager

Newer kernels often fix Wi-Fi issues.

sudo apt update && sudo apt upgrade

If needed, install a mainline kernel (e.g., 6.5+):

sudo apt install linux-image-generic-hwe-22.04

6. Disable Hardware Encryption (if applicable)

Some Intel Wi-Fi cards have issues with hardware encryption.
Edit /etc/modprobe.d/iwlwifi.conf (create if missing):

options iwlwifi 11n_disable=1

Then:

sudo modprobe -r iwlwifi && sudo modprobe iwlwifi

7. Check for RFKill or Blocked Wi-Fi

rfkill list

If the Wi-Fi is blocked (e.g., soft blocked: yes), unblock it:

sudo rfkill unblock wifi

8. Test with a USB Wi-Fi Adapter

If the issue persists, try a Linux-compatible USB Wi-Fi adapter (e.g., TP-Link Archer T4U) to isolate whether the problem is with the Intel card.


9. Check Logs for Errors

journalctl -u NetworkManager --no-pager -n 50

Look for iwlwifi errors or disconnection events.


Final Notes

Let me know if you need further debugging!


Back 2025.06.01 Donate