If your Intel® Killer™ Wireless AX1650 is not recognized or utilized by your Debian-based system, it may be due to missing Iwlwifi drivers or firmware. This guide provides solutions to install a functional Iwlwifi driver. These methods have been verified to restore wireless connectivity for the AX1650 in Ubuntu versions 16.04, 18.04, and 19.04.
Note | If the device you are attempting to install WI-FI drivers on has no Internet access at all, please refer to the following article. |
There are three primary ways to solve the problem:
Newer Linux Kernels, such as 5.4+, might have bugs and compatibility issues, so if you see issues using them, try downgrading to 5.3
Backported drivers are created for your current environment. If you backport a driver and then upgrade your system, it’s possible the Backported driver won’t run correctly. You will have to uninstall the previously backported driver and then create another for your current environment.
Backport the Iwlwifi driver for older Linux Kernels
Before you begin the manual Backport process, here is a quick description and example of the three necessary steps for Backporting the Iwlwifi driver for your AX1650:
Here is an example of these steps being performed
Note | Secure Boot MUST be disabled in your BIOS before following these steps. If you are unsure how to disable Secure Boot, please refer to your machine or motherboard’s support materials or website. |
Let’s Begin
Enter the following commands into a terminal one line at a time.
$ sudo apt update
$ sudo apt-get install -y git
$ sudo apt-get install -y build-essential
$ git clone git://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git
$ cd linux-firmware
$ sudo cp iwlwifi-* /lib/firmware/
$ cd ..
$ git clone https://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/backport-iwlwifi.git
$ cd backport-iwlwifi
$ sudo make defconfig-iwlwifi-public
$ sudo make -j4
$ sudo make install
This command might be necessary to force your machine to use the Driver from boot:
$ update-initramfs -u
Reboot your computer and verify it’s working.
Note | If you update Ubuntu after using a Backported driver, you may have to repeat Step 3 from the beginning to build a new driver. |