Não é possível usar o meu TL-WN725N [duplicado]

2

Estou usando o Ubuntu 13.04 3.8.0-27 genérico e não posso usar meu adaptador sem fio TL-725N nano.

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. 

Eu instalei isto: link Mas nada aconteceu, mesmo depois da reinicialização. Eu ainda não consigo ver o dispositivo no gerenciador de rede.

O sudo modprobe r8712u não fez nada e aqui está o resultado do 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

Obrigado

    
por Artyom2033 13.08.2013 / 21:34

2 respostas

3

Eu baixei e instalei este driver (do zip): link E funcionou.

    
por Artyom2033 15.08.2013 / 07:59
1

O driver correto para o seu dispositivo não é o que você instalou, mas sim o r8712u:

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

Está incluído por padrão em 13.04. Por favor, tente carregá-lo:

sudo modprobe r8712u

Quaisquer erros ou avisos? Uma interface sem fio é criada?

iwconfig

Se não, verifique as dicas aqui:

dmesg | grep r87

Se o carregamento for feito com o dispositivo, adicione o módulo para ser carregado automaticamente:

sudo -i
echo r8712u >> /etc/modules
exit
    
por chili555 13.08.2013 / 21:55