Advertisement
wagnux

RTL8188EUS-Ubuntu

May 29th, 2022 (edited)
849
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.62 KB | None | 0 0
  1. ## Instalação do driver RTL8188EUS no Ubuntu
  2.  
  3. # Preparação
  4. sudo apt update
  5. sudo apt install -f
  6. sudo apt dist-upgrade
  7. sudo apt install dkms build-essential git -y
  8.  
  9. # Instalando o driver
  10. mkdir ~/DriverBuild
  11. cd ~/DriverBuild
  12. git clone https://github.com/lwfinger/rtl8188eu.git
  13. make all
  14. sudo make install
  15. sudo dkms add ./rtl8188eu
  16. sudo dkms build 8188eu/1.0
  17. sudo dkms install 8188eu/1.0
  18. reboot
  19.  
  20. ##Alternativo
  21. # https://ubuntuhandbook.org/index.php/2021/01/install-rtl8188eu-rtl8723ds-drivers-ppa-ubuntu-20-04/
  22. # https://launchpad.net/~kelebek333/+archive/ubuntu/kablosuz/+index?batch=75&direction=backwards&memo=75
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement