Advertisement
Guest User

Untitled

a guest
Mar 23rd, 2019
121
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.62 KB | None | 0 0
  1. sudo apt-get update
  2. sudo apt-get install linux-headers-$(uname -r)
  3. sudo apt-get update
  4. sudo apt-get install build-essential
  5. sudo apt-get install git
  6. git clone https://github.com/lwfinger/rtl8188eu
  7. cd rtl8188eu
  8. make all
  9. sudo make install
  10. sudo modprobe 8188eu.ko
  11. and then I used the following command:
  12.  
  13. sudo lshw -C network
  14. to get the internal wifi driver file name and then add it to blacklist
  15.  
  16. sudo -H gedit /etc/modprobe.d/blacklist
  17. and add the following line to the end of the file:
  18.  
  19. blacklist xxxxx
  20. where xxxx is the internal wifi driver file name.
  21.  
  22. Restart and Ubuntu should now work with the usb adapter.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement