tomaspinho / rtl8821ce

Other
1.58k stars 412 forks source link

Wifi disconnects, slow, unstable - ubuntu 20.04 22.04, only worked good at 18.04 #288

Open ushby opened 2 years ago

ushby commented 2 years ago

I applied the fixes regarding power settings, kernel updates, system configs, still like nothing's ever changed.

Something is really messed up, what's interesting is that Bluetooth immediately interrupts the internet connection when connected to a device.

a-h-ismail commented 1 year ago

Did you blacklist rtw88_8821ce?

ushby commented 1 year ago

Did you blacklist rtw88_8821ce?

Yes, nothing changed.

a-h-ismail commented 1 year ago

Try disabling ASPM. Add this to the kernel command line: pcie_aspm=off

ushby commented 1 year ago

By kernel command line, do you mean I should add it through the grub by pressing e and then editing ?

a-h-ismail commented 1 year ago

I think you can do it that way, but to make it permanent you should edit your grub config: sudo nano /etc/default/grub Add it to the end of the line starting with GRUB_CMDLINE_LINUX_DEFAULT, save the file then run sudo update-grub and reboot.

If you are on Fedora, you can simply add it using grubby: sudo grubby --update-kernel=ALL --args="pcie_aspm=off"

ushby commented 1 year ago

I think you can do it that way, but to make it permanent you should edit your grub config: sudo nano /etc/default/grub Add it to the end of the line starting with GRUB_CMDLINE_LINUX_DEFAULT, save the file then run sudo update-grub and reboot.

If you are on Fedora, you can simply add it using grubby: sudo grubby --update-kernel=ALL --args="pcie_aspm=off"

Thank you, I'll test it and see how it goes.. will try to report at a later time.