Mange / rtl8192eu-linux-driver

Drivers for the rtl8192eu chipset for wireless adapters (D-Link DWA-131 rev E1 included!)
1.32k stars 435 forks source link

Kernel problem on fedora 32 x86_64 #186

Closed proneon267 closed 4 years ago

proneon267 commented 4 years ago

Screenshot from 2020-06-21 09-30-55 I am using a TP-LINK WN823N wifi adapter and I built and installed as follows:

git clone https://github.com/Mange/rtl8192eu-linux-driver           ;Clone the driver repo
cd rtl8192eu-linux-driver                                           ;Go to the cloned repo directory
sudo dkms add .                                                     ;Add the driver to DKMS
sudo dkms install rtl8192eu/1.0                                     ;Build and install driver
echo "blacklist rtl8xxxu" | sudo tee /etc/modprobe.d/rtl8xxxu.conf  ;Blacklist the stock driver
echo -e "8192eu\n\nloop" | sudo tee /etc/modules                    ;Force to activate from boot

Regenerate grub config and initramfs:
    sudo grub2-mkconfig -o /boot/efi/EFI/fedora/grub.cfg    ;For UEFI systems
    sudo grub2-mkconfig -o /boot/grub2/grub.cfg             ;For BIOS systems
    dracut -v -f                                            ;Regenerate initramfs

systemctl reboot -i
yavincl commented 4 years ago

This is normal, and happens because 8192eu is not in the kernel tree and is not signed. And it will never be because this driver's code is completely non compliant with the kernel's standards.

Just ignore the error and you will be fine.

-------- Mensagem Original -------- Ativo 21 de jun de 2020 01:22, proneon267 escreveu:

Screenshot from 2020-06-21 09-30-55 I am using a TP-LINK WN823N wifi adapter and I built and installed as follows:

git clone https://github.com/Mange/rtl8192eu-linux-driver ;Clone the driver repo cd rtl8192eu-linux-driver ;Go to the cloned repo directory sudo dkms add . ;Add the driver to DKMS sudo dkms install rtl8192eu/1.0 ;Build and install driver echo "blacklist rtl8xxxu" | sudo tee /etc/modprobe.d/rtl8xxxu.conf ;Blacklist the stock driver echo -e "8192eu\n\nloop" | sudo tee /etc/modules ;Force to activate from boot

Regenerate grub config and initramfs: sudo grub2-mkconfig -o /boot/efi/EFI/fedora/grub.cfg ;For UEFI systems sudo grub2-mkconfig -o /boot/grub2/grub.cfg ;For BIOS systems dracut -v -f ;Regenerate initramfs

systemctl reboot -i

— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub, or unsubscribe.