web-dev-qa-db-fra.com

Je ne peux pas utiliser mon TL-WN725N

J'utilise Ubuntu 13.04 3.8.0-27-generic et je ne peux pas utiliser mon adaptateur sans fil nano TL-725N.

lsusb:

Bus 001 Device 002: ID 8087:0024 Intel Corp. Integrated Rate Matching Hub
Bus 002 Device 002: ID 8087:0024 Intel Corp. Integrated Rate Matching Hub
Bus 003 Device 002: ID 046d:c52b Logitech, Inc. Unifying Receiver
Bus 003 Device 005: ID 0bda:8179 Realtek Semiconductor Corp.
Bus 003 Device 004: ID 05e3:0727 Genesys Logic, Inc. microSD Reader/Writer
Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 002 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 003 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 004 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub
Bus 001 Device 003: ID 07d1:3300 D-Link System DWA-130 802.11n Wireless N Adapter(rev.E) [Realtek RTL8191SU]
Bus 001 Device 004: ID 2232:1035  
Bus 002 Device 003: ID 8087:07da Intel Corp. 

J'ai installé ceci: https://code.google.com/p/realtek-8188cus-wireless-drivers-3444749-ubuntu-1304/ Mais rien ne s'est inséré, même après le redémarrage. Je ne peux toujours pas voir l'appareil dans le gestionnaire de réseau.

Sudo modprobe r8712u n'a rien fait et voici le résultat de iwconfig:

wlan1     IEEE 802.11abgn  ESSID:off/any  
          Mode:Managed  Access Point: Not-Associated   Tx-Power=15 dBm   
          Retry  long limit:7   RTS thr:off   Fragment thr:off
          Power Management:off

eth0      no wireless extensions.

lo        no wireless extensions.

wlan0     IEEE 802.11bg  ESSID:"gagman"  Nickname:"rtl_wifi"
          Mode:Managed  Frequency:2.462 GHz  Access Point: 00:13:A3:0A:B8:0D   
          Bit Rate:54 Mb/s   Sensitivity:0/0  
          Retry:off   RTS thr:off   Fragment thr:off
          Power Management:off
          Link Quality=89/100  Signal level=71/100  Noise level=0/100
          Rx invalid nwid:0  Rx invalid crypt:0  Rx invalid frag:0
          Tx excessive retries:0  Invalid misc:0   Missed beacon:0

dmesg | grep r87

[   12.628932] r8712u: module is from the staging directory, the quality is unknown, you have been warned.
[   12.630039] r8712u: Staging version
[   12.630049] r8712u: register rtl8712_netdev_ops to netdev_ops
[   12.630050] r8712u: USB_SPEED_HIGH with 4 endpoints
[   12.630511] r8712u: Boot from EFUSE: Autoload OK
[   13.046262] r8712u: CustomerID = 0x0006
[   13.046264] r8712u: MAC Address from efuse = c8:be:19:de:b6:96
[   13.046264] r8712u: Loading firmware from "rtlwifi/rtl8712u.bin"
[   13.046320] usbcore: registered new interface driver r8712u
[   17.937068] r8712u: 1 RCR=0x153f00e
[   17.937822] r8712u: 2 RCR=0x553f00e
[   40.011329] r8712u: wpa_set_encryption, crypt.alg = WEP

Merci

2
Artyom2033

J'ai téléchargé et installé ce pilote (à partir du zip): https://github.com/lwfinger/rtl8188e Et cela a fonctionné.

3
Artyom2033

Le pilote correct pour votre périphérique n'est pas celui que vous avez installé, mais plutôt le r8712u:

modinfo r8712u | grep 3300
alias:          usb:v07D1p3300d*dc*dsc*dp*ic*isc*ip*in*

Il est inclus par défaut dans 13.04. S'il vous plaît essayez de le charger:

Sudo modprobe r8712u

Des erreurs ou des avertissements? Une interface sans fil est-elle créée?

iwconfig

Sinon, recherchez des indices ici:

dmesg | grep r87

Si le simple chargement met votre appareil en service, ajoutez le module à charger automatiquement:

Sudo -i
echo r8712u >> /etc/modules
exit
1
chili555