Adaptador sem fio USB Netgear Ubuntu 16.04

1

Meu adaptador sem fio netgear parece ser do mesmo modelo do este thread, mas as etapas não acabaram funcionando fora por mim. Nenhum erro foi dado. Nota: Esta é a segunda tentativa, portanto, alguns arquivos já estão instalados / atualizados. Estou em uma nova instalação do Ubuntu 16.04, não estou acostumado com o ambiente.

Aqui está o terminal após cada etapa:

  1. Observação: não posso postar mais de dois links, então excluo o http: // na frente dos hits / gets.

    $ lsusb
    Bus 001 Device 005: ID 0846:9011 NetGear, Inc. WNDA3100v2 802.11abgn [Broadcom BCM4323]
    
    $ sudo apt-get update 
    Hit:1 us.archive.ubuntu.com/ubuntu xenial InRelease
    Get:2 us.archive.ubuntu.com/ubuntu xenial-updates InRelease [95.7 kB] 
    Hit:3 us.archive.ubuntu.com/ubuntu xenial-backports InRelease 
    Get:4 us.archive.ubuntu.com/ubuntu xenial-security InRelease [94.5 kB] 
    Fetched 190 kB in 1s (142 kB/s)
    Reading package lists... Done
    
    $ sudo apt-get install ndiswrapper-common ndiswrapper-utils-1.9
    Reading package lists... Done
    Building dependency tree    
    Reading state information... Done
    Note, selecting 'ndiswrapper' instead of 'ndiswrapper-common'
    ndiswrapper is already the newest version (1.59-6).
    ndiswrapper-utils-1.9 is already the newest version (1.59-6).
    0 upgraded, 0 newly installed, 0 to remove and 59 not upgraded.
    
  2. Baixou os arquivos da postagem 6 e os colocou na minha área de trabalho.

    $ arch
    x86_64
    $ cd ~/Desktop/Broadcom_bcm43xx_USB_32_64bit_v2
    

    Minha linha de comando agora aparece como:

    shawn@shawn-Z68XP-UD3P:~/Desktop/Broadcom_bcm43xx_USB_32_64bit_v2$ 
    
  3. Como o arco retornou x84_64 eu emiti:

    $ sudo ndiswrapper -i bcmn43xx64.inf
    driver bcmn43xx64 is already installed
    
    $ sudo ndiswrapper -ma
    module configuration information is stored in /etc/modprobe.d/ndiswrapper.conf
    
  4. Este passo não retornou nenhuma informação.

    sudo depmod -a
    
  5. Este passo também não retornou nenhuma informação.

    sudo modprobe ndiswrapper
    

Obrigado por qualquer ajuda. Eu estava indo para pm Chili555, o autor da resposta para o tópico anterior, mas não consegui encontrar uma opção. (Talvez eu precise de mais reputação?)

Editar 1:

$ dmesg | grep ndis
[25668.481615] rndis_host 5-2:1.0 usb0: register 'rndis_host' at usb-0000:06:00.0-2, RNDIS device, 02:06:52:50:34:39
[25668.481640] usbcore: registered new interface driver rndis_host
[25668.490912] rndis_host 5-2:1.0 enp6s0u2: renamed from usb0

com o adaptador correto em:

$ dmesg | grep ndis
[25668.481615] rndis_host 5-2:1.0 usb0: register 'rndis_host' at usb-0000:06:00.0-2, RNDIS device, 02:06:52:50:34:39
[25668.481640] usbcore: registered new interface driver rndis_host
[25668.490912] rndis_host 5-2:1.0 enp6s0u2: renamed from usb0
[27435.290896] rndis_host 5-2:1.0 enp6s0u2: unregister 'rndis_host' usb-0000:06:00.0-2, RNDIS device
[53404.308888] rndis_host 5-2:1.0 usb0: register 'rndis_host' at usb-0000:06:00.0-2, RNDIS device, 02:06:52:50:34:39
[53404.321914] rndis_host 5-2:1.0 enp6s0u2: renamed from usb0
[53499.506118] ndiswrapper: module verification failed: signature and/or required key missing - tainting kernel
[53499.507750] ndiswrapper version 1.59 loaded (smp=yes, preempt=no)
[53499.681200] ndiswrapper: driver bcmn43xx64 (,08/26/2009, 5.10.79.30) loaded
[53499.788872] rndis_host 5-2:1.0 enp6s0u2: unregister 'rndis_host' usb-0000:06:00.0-2, RNDIS device
[53500.230542] usbcore: registered new interface driver ndiswrapper
[53500.236500] ndiswrapper 1-1.4:1.0 enxe0469a00acaa: renamed from wlan0
[53500.261564] ndiswrapper: interface renamed to 'enxe0469a00acaa'
[53522.657592] rndis_host 5-2:1.0 usb0: register 'rndis_host' at usb-0000:06:00.0-2, RNDIS device, 02:06:52:50:34:39
[53522.676968] rndis_host 5-2:1.0 enp6s0u2: renamed from usb0
    
por Shawn Baumbach 20.08.2016 / 00:52

1 resposta

0

De acordo com os comentários, a reinstalação do ndiswrapper e o reexame dos passos após a instalação corrigiram o problema. Para reinstalar ndiswrapper :

sudo apt-get install --reinstall ndiswrapper ndiswrapper-dkms
    
por David Foerster 17.02.2017 / 10:02