Bitterblue
Bitterblue
It's a feature of Windows, not specifically related to wifi but apparently it does things to the wifi cards. It's on by default, you don't have to turn it on...
``lsmod | grep 8821`` will tell you what's happening. It will probably show that rtw88_8821ce is loaded. That's the rtw88 driver built into the kernel.
Check what driver you are actually using: ``` lsmod | grep 8821 ```
Create the file ``/etc/modprobe.d/blacklist-rtw88.conf`` with this content: ``` blacklist rtw88_8821ce blacklist rtw_8821ce ``` And reboot. Then you will be able to use the driver from this repository, which probably works...
It's ``/etc/modprobe.d/`` not ``/modprobe.d/``.
If you're already in ``/etc/`` then it's ``cd modprobe.d`` not ``cd /modprobe.d``.
Is the wifi still slow? Then check again what driver you are using: ``` lsmod | grep 8821 ```
:/ Maybe in another three years I'll feel like figuring this out.
Sorry, it's looking even less likely. Patches are still welcome.
Assuming the two blacklists are on separate lines, like this: ``` blacklist rtw88_8821ce blacklist rtw_8821ce ``` and that you installed the driver in this repository, you just need to reboot....