web-dev-qa-db-fra.com

Pilote TP-Link TL-WN725N pour la version 18.04

Aujourd'hui, j'ai mis à jour la version Ubuntu de 16.04 LTS à 18.04 LTS. Après cela, Ubuntu n'a pas reconnu mon pilote Wi-Fi. Veuillez aider à résoudre ce problème. Je vous remercie.

vahe@vahe-Ubuntu:~/rtl8188eu$ lsusb    
Bus 001 Device 002: ID 148f:7601 Ralink Technology, Corp. MT7601U Wireless Adapter    
Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub    
Bus 005 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub    
Bus 004 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub    
Bus 003 Device 003: ID 0458:0708 KYE Systems Corp. (Mouse Systems)     
Bus 003 Device 002: ID 0458:0736 KYE Systems Corp. (Mouse Systems)     
Bus 003 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub    
Bus 002 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub

Aussi j'ai eu ci-dessous

vahe@vahe-Ubuntu:~/rtl8188eu$ Sudo insmod 8188.ko
[Sudo] password for vahe:     
insmod: ERROR: could not load module 8188.ko: No such file or directory
2
Vahe Ghevondyan

Le pilote doit être installé à partir de sources
Ouvrez une fenêtre de terminal et allez-y

Sudo apt-get update
Sudo apt-get install -y linux-headers-$(uname -r) build-essential git
git clone https://github.com/lwfinger/rtl8188eu
cd rtl8188eu
make all
Sudo make install
Sudo insmod 8188eu.ko
2
Pareri