Fritz WLAN USB Stick 1.1 Ubuntu 17.10

1

Alguém familiarizado com a instalação do Fritz WLAN USB Stick 1.1 no Ubuntu 17.10?

Eu tentei o seguinte:

Instalando os drivers com o ndiswrapper gui

gksundisgtk

Odriveréretiradodo link . Isso tem funcionado no Ubuntu 16 pelo caminho.

Nenhum dispositivo wifi é reconhecido no gnome.

Mais informações, meu

lsusb

saída (selecionada a parte relevante):

Bus 001 Device 004: ID 057c:6201 AVM GmbH AVM Fritz!WLAN v1.1 [Texas Instruments TNETW1450]

Alguém tem dicas / soluções?

Obrigado antecipadamente e tenha um bom dia a todos.

Editar: Resultado de

    dmesg | grep ndis

 [  876.202555] ndiswrapper: loading out-of-tree module taints kernel.
 [  876.202813] ndiswrapper: module verification failed: signature and/or required key missing - tainting kernel
 [  876.202823] ndiswrapper: module license taints kernel.
 [  876.203807] ndiswrapper version 1.60 loaded (smp=yes, preempt=no)
 [  876.228956] usbcore: registered new interface driver ndiswrapper
 [  902.744926] usbcore: deregistering interface driver ndiswrapper
 [  902.765425] ndiswrapper version 1.60 loaded (smp=yes, preempt=no)
 [  902.772806] usbcore: registered new interface driver ndiswrapper
 [  969.642259] usbcore: deregistering interface driver ndiswrapper
 [  969.670316] ndiswrapper version 1.60 loaded (smp=yes, preempt=no)
 [  969.681944] usbcore: registered new interface driver ndiswrapper
 [ 1073.041785] usbcore: deregistering interface driver ndiswrapper
 [ 1073.072563] ndiswrapper version 1.60 loaded (smp=yes, preempt=no)
 [ 1073.080432] usbcore: registered new interface driver ndiswrapper
 [12809.532371] usbcore: deregistering interface driver ndiswrapper
 [12809.551691] ndiswrapper version 1.60 loaded (smp=yes, preempt=no)
 [12809.558624] usbcore: registered new interface driver ndiswrapper
    
por Sir hennihau 17.03.2018 / 19:22

1 resposta

1

Parece que esses dispositivos são suportados nativamente no Linux com o driver acx-mac80211 . Aqui está uma lista dos dispositivos que este driver suporta, do link , o seu é um deles.

PCI: 104C:8400 Texas Instruments ACX 100 22Mbps Wireless Interface
PCI: 104C:8401 Texas Instruments ACX 100 22Mbps Wireless Interface
PCI: 104C:9066 Texas Instruments ACX 111 54Mbps Wireless Interface
USB: 0451:60C5 Texas Instruments, Inc. (Device name unknown)
USB: 057C:5601 AVM GmbH AVM Fritz!WLAN [Texas Instruments TNETW1450]
USB: 057C:6201 AVM GmbH AVM Fritz!WLAN v1.1 [Texas Instruments TNETW1450]
USB: 07B8:B21A AboCom Systems Inc WUG2400 802.11g Wireless Adapter [Texas Instruments TNETW1450]
USB: 0CDE:0017 Z-Com (Device name unknown)
USB: 2001:3B00 D-Link Corp. AirPlus DWL-120+ Wireless Adapter [Texas Instruments ACX100USB]
USB: 2001:3B01 D-Link Corp. WLAN Boot Device

Instale o driver por:

  1. Instalando o firmware para isso. Para o "AVM Fritz! WLAN v1.1", você pode fazer isso executando

    sudo wget -P /lib/firmware http://acx100.erley.org/fw/acx111_2.4.0.70-USB/tiacx111usbc1B
    

    Outros dispositivos suportados por este driver requerem outro firmware, procure no link acima por detalhes. Isso pode ser tudo que você precisa fazer, pois parece que a versão mais recente do Ubuntu já vem com o driver. Se não funcionar depois de instalar o firmware e reiniciar, você precisará do driver.

  2. Instale o próprio driver. Texto copiado da página wiki Debian para referência:

  1. Checkout the http://acx100.git.sourceforge.net/git/gitweb.cgi?p=acx100/acx-mac80211|acx-mac80211 repository:

    git clone git://git.code.sf.net/p/acx100/acx-mac80211 acx100-acx-mac80211

  2. Move the repository directory to /usr/src and rename:

    su mv acx100-acx-mac80211 /usr/src/acx-mac80211-git

  3. Add acx-mac80211-git to the tree for building and installing:

    dkms add -m acx-mac80211 -v git

  4. Build and install the acx-mac80211 module:

    dkms build -m acx-mac80211 -v git dkms install -m acx-mac80211 -v git

  5. Load the module:

    modprobe acx-mac80211

  6. If necessary, connect the device to your system.

Se isso funcionar corretamente, você não precisará usar o ndiswrapper.

    
por JonasCz 18.03.2018 / 12:09