TP-LINK TF-3200 [fechado]

-1

Eu sou novo aqui usando o Ubuntu e instalei o 14.04 LTS. Eu estou tentando instalar um driver de TP-3200 TP-LINK e, infelizmente, não consigo descobrir como fazê-lo. Pesquisei por toda a internet e também consulte o CD do TP-LINK.

    
por Patrick Jason Malig 29.09.2014 / 12:06

1 resposta

1

Verifique este link link . Você pode baixar os drivers aqui: link

1- Extraí todos os arquivos do zip e procurei no diretório:

user1@host1:~/Downloads$ cd TF-3200_100628/
user1@host1:~/Downloads/TF-3200_100628$ ls
LinuxDriver       Windowns 7 64bit  Windows ME           Windows XP_2003
Novell Netware    Windows 2000      Windows Vista 32bit  Windows XP 64bit
Windowns 7 32bit  Windows 98SE      Windows Vista 64bit

user1@host1:~/Downloads/TF-3200_100628$ cd LinuxDriver/

user1@host1:~/Downloads/TF-3200_100628/LinuxDriver$ ls
compat.h  ethtool.h  mii.c  readme.txt
crc32.h   Makefile   mii.h  sundance_main.c

2- Carregou os drivers do módulo do kernel:

user1@host1:~/Downloads/TF-3200_100628/LinuxDriver$ sudo modprobe mii; sudo modprobe sundance;

3- Verifique como se carregou corretamente; Eu não tenho cartão, então não consigo vê-lo no dmesg. Você deveria, no entanto.

user1@host1:~/Downloads/TF-3200_100628/LinuxDriver$ dmesg | grep -i eth | tail
[    0.104998] reboot: Dell xxx xxx series board detected. Selecting PCI-method for reboots.
[    3.998768] tg3 0000:0a:00.0 eth0: Tigon3 [partno(BCM95761) rev 5761100] (PCI Express) MAC address d0:67:e5:56:d0:b9
[    3.998777] tg3 0000:0a:00.0 eth0: attached PHY is 5761 (10/100/1000Base-T Ethernet) (WireSpeed[1], EEE[0])
[    3.998783] tg3 0000:0a:00.0 eth0: RXcsums[1] LinkChgREG[0] MIirq[0] ASF[0] TSOcap[1]
[    3.998788] tg3 0000:0a:00.0 eth0: dma_rwctrl[76180000] dma_mask[64-bit]
[   39.375507] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready
[   47.558954] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[   49.294698] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready
[   49.295255] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready

O mesmo nos detalhes do link do ip:

user1@host1:~/Downloads/TF-3200_100628/LinuxDriver$ ip link show
1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN mode DEFAULT group default 
    link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
2: eth0: <NO-CARRIER,BROADCAST,MULTICAST,UP> mtu 1500 qdisc mq state DOWN mode DEFAULT group default qlen 1000
    link/ether d0:67:e5:00:00:00 brd ff:ff:ff:ff:ff:ff
3: wlan0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc mq state UP mode DORMANT group default qlen 1000
    link/ether 60:67:20:00:00:40 brd ff:ff:ff:ff:ff:ff
j56silva@72N0BT1:~/Downloads/TF-3200_100628/LinuxDriver$ 
    
por João Silva 29.09.2014 / 12:34