Monday, April 29, 2024
 Popular · Latest · Hot · Upcoming
8
rated 0 times [  8] [ 0]  / answers: 1 / hits: 13491  / 2 Years ago, thu, january 6, 2022, 1:23:40

I have a Ubuntu 21.04 fresh install but my Wifi is not working. It states: "Wi-Fi adapter not found". The card is an Intel wifi 6 AX200.
When writing lshw -C network it shoes network unclaimed
And it says nothing about wifi 6 ax 200, it says something about realtek.
Ubuntu 21.04 should be compatible since its kernel is >5.1 as required by this wifi card.
Any help will be greatly appreciated...
D


Edit after chili555's comment:
lspci -nnk | grep 0280 -A3


03:00.0 Network controller [0280]: Realtek Semiconductor Co., Ltd. Device [10ec:8852]
DeviceName: Realtek Wireless LAN + BT
Subsystem: Hewlett-Packard Company Device [103c:88e1]
04:00.0 Non-Volatile memory controller [0108]: Sandisk Corp WD Black SN750 / PC SN730 NVMe SSD [15b7:5006]

In the laptop specs it says it should have an Intel Wifi6 AX200!


More From » wireless

 Answers
7

Of course, if you wish, you could return the laptop and request that you instead receive a replacement equipped with the captioned Intel AX200. As well, you could easily install the correct driver for your Realtek device.


With a temporary internet connection by ethernet, tethered or whatever means possible, open a terminal and do:


sudo apt update
sudo apt install -y git build-essential
git clone https://github.com/lwfinger/rtw89.git
cd rtw89
make
sudo make install
sudo mkdir /usr/lib/firmware/rtw89
sudo cp rtw8852a_fw.bin /usr/lib/firmware/rtw89/
sudo modprobe rtw89pci

Your wireless should now be working.


EDIT: From time to time, when security flaws are corrected, when bugs are fixed or when new features are added, Update Manager will offer updates that include ‘Complete Linux Image’, that is, a newer kernel version than that installed today. After the update is installed, you will be prompted to restart to complete the update. After you restart, your wireless will no longer be working. To restore the wireless, open a terminal and do:


cd ~/rtw89
git pull
make
sudo make install
sudo modprobe rtw89pci

Please retain the rtw89 file and these instructions for that time.


At some future time, the rtw89 suite of drivers will be included in the latest kernels and this process will no longer be required. We haven’t yet any idea when that may occur.


[#1346] Friday, January 7, 2022, 2 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
rtbrbab

Total Points: 461
Total Questions: 126
Total Answers: 117

Location: Saudi Arabia
Member since Fri, Jul 1, 2022
2 Years ago
rtbrbab questions
Fri, May 5, 23, 14:22, 1 Year ago
Tue, Nov 16, 21, 14:41, 3 Years ago
Thu, Mar 23, 23, 20:47, 1 Year ago
Sat, Jun 18, 22, 21:36, 2 Years ago
;