Intel AX101 WiFi Driver Installation on Debian 13
Linux does not yet recognize the Intel AX101 WiFi card, as its driver is not included in the kernel by default. However, this can be fixed by installing backport-iwlwifi.
First, install git, dkms, linux-headers-amd64, and build-essential
You can check with:

First, install git, dkms, linux-headers-amd64, and build-essential
sudo apt install git dkms linux-headers-amd64 build-essentialClone the backport-iwlwifi repository:
git clone https://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/backport-iwlwifi.gitGo into the cloned folder:
cd backport-iwlwifiMake sure the latest commit is 041b58c08efca57bca7377a54dc94ad6a6a24d74.
You can check with:
git logIf the latest commit is different, reset the cloned backport-iwlwifi repository to that specific commit:
git reset --hard 041b58c08efca57bca7377a54dc94ad6a6a24d74Build and install backport-iwlwifi:
make defconfig-iwlwifi-public sed -i 's/CPTCFG_IWLMVM_VENDOR_CMDS=y/# CPTCFG_IWLMVM_VENDOR_CMDS is not set/' .config make -j4 sudo make installDownload the firmware file iwlwifi-bz-b0-hr-b0-100.ucode:
wget https://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/linux-firmware.git/plain/iwlwifi-bz-b0-hr-b0-100.ucode?h=for-upstreamCopy the file into /lib/firmware:
sudo cp -v iwlwifi-bz-b0-hr-b0-100.ucode /lib/firmware/Finally, restart your laptop.
Comments
Post a Comment