USB 3.0 Asix AX88179 não está funcionando no Ubuntu 13.10

1

Eu atualizei de 13.04 para 13.10 e eu tive o driver AX88179 instalado do PPA .
Quando atualizei o conversor USB 3.0 para Ethernet parou de funcionar, embora ele deva ser incluído na linha principal do kernel a partir de 3.9. Ele está sendo reconhecido pelo sistema, mas nenhuma conexão está sendo feita.
Aqui está o verbose relevante lsusb :

Bus 004 Device 006: ID 0b95:1790 ASIX Electronics Corp. 
Device Descriptor:
  bLength                18
  bDescriptorType         1
  bcdUSB               3.00
  bDeviceClass          255 Vendor Specific Class
  bDeviceSubClass       255 Vendor Specific Subclass
  bDeviceProtocol         0 
  bMaxPacketSize0         9
  idVendor           0x0b95 ASIX Electronics Corp.
  idProduct          0x1790 
  bcdDevice            1.00
  iManufacturer           1 ASIX Elec. Corp.
  iProduct                2 AX88179
  iSerial                 3 00000000000001
  bNumConfigurations      1
  Configuration Descriptor:
    bLength                 9
    bDescriptorType         2
    wTotalLength           57
    bNumInterfaces          1
    bConfigurationValue     1
    iConfiguration          0 
    bmAttributes         0xa0
      (Bus Powered)
      Remote Wakeup
    MaxPower              124mA
    Interface Descriptor:
      bLength                 9
      bDescriptorType         4
      bInterfaceNumber        0
      bAlternateSetting       0
      bNumEndpoints           3
      bInterfaceClass       255 Vendor Specific Class
      bInterfaceSubClass    255 Vendor Specific Subclass
      bInterfaceProtocol      0 
      iInterface              4 Network_Interface
      Endpoint Descriptor:
        bLength                 7
        bDescriptorType         5
        bEndpointAddress     0x81  EP 1 IN
        bmAttributes            3
          Transfer Type            Interrupt
          Synch Type               None
          Usage Type               Data
        wMaxPacketSize     0x0008  1x 8 bytes
        bInterval              11
        bMaxBurst               0
      Endpoint Descriptor:
        bLength                 7
        bDescriptorType         5
        bEndpointAddress     0x82  EP 2 IN
        bmAttributes            2
          Transfer Type            Bulk
          Synch Type               None
          Usage Type               Data
        wMaxPacketSize     0x0400  1x 1024 bytes
        bInterval               0
        bMaxBurst               3
      Endpoint Descriptor:
        bLength                 7
        bDescriptorType         5
        bEndpointAddress     0x03  EP 3 OUT
        bmAttributes            2
          Transfer Type            Bulk
          Synch Type               None
          Usage Type               Data
        wMaxPacketSize     0x0400  1x 1024 bytes
        bInterval               0
        bMaxBurst              15
Binary Object Store Descriptor:
  bLength                 5
  bDescriptorType        15
  wTotalLength           22
  bNumDeviceCaps          2
  USB 2.0 Extension Device Capability:
    bLength                 7
    bDescriptorType        16
    bDevCapabilityType      2
    bmAttributes   0x00000002
      Link Power Management (LPM) Supported
  SuperSpeed USB Device Capability:
    bLength                10
    bDescriptorType        16
    bDevCapabilityType      3
    bmAttributes         0x00
    wSpeedsSupported   0x000e
      Device can operate at Full Speed (12Mbps)
      Device can operate at High Speed (480Mbps)
      Device can operate at SuperSpeed (5Gbps)
    bFunctionalitySupport   1
      Lowest fully-functional device speed is Full Speed (12Mbps)
    bU1DevExitLat           1 micro seconds
    bU2DevExitLat         101 micro seconds
Device Status:     0x000c
  (Bus Powered)
  U1 Enabled
  U2 Enabled

Ao contrário de esta questão , o dispositivo não está sendo reconhecido como uma Ethernet dispositivo mais. Aqui está a saída relevante do dmseg:

dmesg | grep ASIX
[    3.238120] usb 4-2: Manufacturer: ASIX Elec. Corp.
[   61.907446] usb 4-2: Manufacturer: ASIX Elec. Corp.
[   84.772115] usb 4-1: Manufacturer: ASIX Elec. Corp.
[  192.615236] usb 4-2: Manufacturer: ASIX Elec. Corp.
[ 1146.200351] usb 4-2: Manufacturer: ASIX Elec. Corp.

dmesg | grep AX88179
[    3.238119] usb 4-2: Product: AX88179
[   61.907444] usb 4-2: Product: AX88179
[   84.772110] usb 4-1: Product: AX88179
[  192.615231] usb 4-2: Product: AX88179
[ 1146.200346] usb 4-2: Product: AX88179

O driver não é instalado após o upgrade, tanto quanto eu sei.

    
por the_drow 14.11.2013 / 11:16

2 respostas

0

O driver funciona bem, a menos que o Ubuntu entre no modo de suspensão. Depois de recuperar do sono, o motorista simplesmente pára para trabalhar.
A única solução encontrada é desativar o modo de suspensão.

    
por the_drow 05.12.2013 / 09:41
0

Eu instalei o ppa:

add-apt-repository ppa:qji/ax88179
# since there is no source for soucy, replace it with raring:
sed s/saucy/raring/g /etc/apt/sources.list.d/qji-ax88179-saucy.list>/etc/apt/sources.list.d/qji-ax88179-raring.list
rm /etc/apt/sources.list.d/qji-ax88179-saucy.list
aptitude update
aptitude install ax88179 
reboot

Trabalhou uma vez , apenas na primeira vez após a primeira reinicialização que funcionou. desde então, recebo erros de falha no syslog. Ele funciona no laptop do meu amigo, com parábola linux. Vou comprar outro adaptador;)

    
por rubo77 12.02.2014 / 19:45