Usando Dongle WiFi no Ubuntu 15.10

0

Eu tenho um Belkin F9L1108-TG que supostamente usa o driver RTL8192DU.

As instruções aqui: Como instalar drivers para Belkin f9l1108tg adaptador USB wifi? não funciona.

As instruções aqui link têm o seguinte erro em make

justin@Unicorn:~/Desktop/RTL8192DU Driver/rtl8192du$ make
make ARCH=x86_64 CROSS_COMPILE= -C /lib/modules/4.2.0-35-generic/build M=/home/justin/Desktop/RTL8192DU Driver/rtl8192du  modules
make[1]: Entering directory '/usr/src/linux-headers-4.2.0-35-generic'
arch/x86/Makefile:138: CONFIG_X86_X32 enabled but no binutils support
Makefile:669: Cannot use CONFIG_CC_STACKPROTECTOR_STRONG: -fstack-protector-strong not supported by compiler
make[1]: *** No rule to make target 'Driver/rtl8192du'.  Stop.
make[1]: Leaving directory '/usr/src/linux-headers-4.2.0-35-generic'
Makefile:149: recipe for target 'modules' failed
make: *** [modules] Error 2

Não sei como superar isso.

FYI, aqui está a informação usb

justin@Unicorn:~/Desktop/RTL8192DU Driver/rtl8192du$ lsusb
Bus 004 Device 003: ID 050d:110a Belkin Components F9L1101v2 802.11abgn Wireless Adapter [Realtek RTL8192DU]
Bus 004 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 006 Device 002: ID 046d:c52f Logitech, Inc. Unifying Receiver
Bus 006 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Bus 003 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 005 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub
Bus 001 Device 002: ID 413c:2003 Dell Computer Corp. Keyboard
Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
    
por LameCoder 10.04.2016 / 20:56

1 resposta

1

Por favor, tente:

sudo apt-get update
sudo apt-get install git
git clone https://github.com/lwfinger/rtl8192du.git
cd rtl8192du
make
sudo make install
sudo modprobe 8192du

Recomendamos que você instale a versão mais recente que testei por meio do 'make' em vez de corrigir o erro em uma versão anterior desconhecida. O erro é provavelmente que existe um espaço no nome! %código%. Você pode corrigi-lo renomeando a pasta para: ~/Desktop/RTL8192DU Driver . Eu não propus isso desde o início, já que eu recomendo que você use uma versão posterior do git.

    
por chili555 10.04.2016 / 23:23