[Ubuntu18.04 solves the ax201 wireless network card driver installation for Bluetooth wifi]

[Ubuntu18.04 solves the ax201 wireless network card driver installation for Bluetooth wifi]

1 Introduction

The desktop is installed with a dual-system win11+Ubuntu18.04 system, and it is found that there is no wireless network card and Bluetooth. After consulting the information, it is found that the ax201 network card driver has not been integrated in Ubuntu because the network card has not been used for a long time. You need to install the ax201 network card driver yourself. First make sure whether the kernels version is greater than 5.2, then go to the official website to download the driver, and restart the computer!

2. Update the linux kernel

First check the kernel version

uname -r

insert image description here

Mine is 5.4 enough and does not need to update the kernel. The ax201 network card driver needs version 5.2 or above. Try to use the new kernel version.
Update the kernel method: https://blog.csdn.net/caigen0001/article/details/102295585
Kernels official website address: http://www.kernel.org/

3. Download and install the intel ax201 network card driver

Intel ax201 network card driver official website: https://www.intel.com/content/www/us/en/support/articles/000005511/wireless.html

insert image description hereClick ax201 wireless network card iwlwifi-qu-48.13675109.0.tgzdriver download

Then open the terminal, unzip and copy to the corresponding firmware location

cd ~/Downloads
tar -zxvf iwlwifi-qu-48.13675109.0.tgz
cd iwlwifi-Qu-48.13675109.0
sudo cp iwlwifi-Qu-*-48.ucode /lib/firmware

insert image description here

Restart the desktop computer and find that the wifi network card is successfully recognized

References: Ubuntu18.04 intel wifi6 ax201 wireless network card driver installation

Guess you like

Origin blog.csdn.net/vor234/article/details/131682778