That initial post was not the output of inxi -Nxxx
but the followup shows it. The output of lspci shows this
03:00.0 Network controller [0280]: Realtek Semiconductor Co., Ltd. Device [10ec:b852]
Although the answer is about ubuntu, I found this
And it seems the solution is to install an updated driver for that adapter.
There is no indicated driver loaded for that adapter at present.
-
sudo dnf install git
make a temp directory under your home directory where the rest can be done. -
mkdir rtl
then cd into that directory -
cd rtl
now download the driver source -
git clone https://github.com/HRex39/rtl8852be.git
make sure the kernel headers are installed for compiling -
sudo dnf install kernel-devel kernel-header
now to compile it cd rtl8852be
make
-
sudo make install
which makes the module available for use sudo modprobe 8852be
If there are any errors while doing these steps then stop and fix the error before continuing.
If all this completes properly then inxi -Nxxx
should now show the new module driver for that adapter.
There may be a few additional steps to make sure the new module loads when you reboot but it first needs to be loaded and tested before we go further.