Underc0de

Foros Generales => Dudas y pedidos generales => Mensaje iniciado por: diego34427 en Diciembre 03, 2019, 03:19:01 AM

Título: Instalar adaptador wifi usb tp-link kali linux
Publicado por: diego34427 en Diciembre 03, 2019, 03:19:01 AM
hola, desde hace un timpo eh intentado instalar kali linux pero nunca puedo conectarlo a una red alguien podria confirmarme si este adpatador me sirve  ---->Tp-link, Adaptador Usb Wifi Alta Ganancia 300mbps, Tl-wn822n<-----
aqui hay algunas imagenes --> https://articulo.mercadolibre.com.co/MCO-450980148-tp-link-adaptador-usb-wifi-alta-ganancia-300mbps-tl-wn822n-_JM?quantity=1#position=1&type=item&tracking_id=823cf813-793b-4a41-bf40-2b4f598d3681
Título: Re:adaptador para kali linux
Publicado por: blackdrake en Diciembre 04, 2019, 06:38:05 AM
Hola @diego34427 (https://underc0de.org/foro/index.php?action=profile;u=97317)

Por lo que he podido investigar debes instalar el driver, prueba de la siguiente forma.


Código (bash) [Seleccionar]
$ apt-get update
$ apt install bc
$ sudo apt-get install linux-headers-$(uname -r)


Descargar el siguiente Driver: https://github.com/ZeeRooo/RTL8192EU
Seguir los 4 pasos de la Build guide del repo de github del driver. (son los siguientes).

Make sure you have installed the following packages:
    - make (Tested on 4.2.1)
    - gcc (Tested on 8.2.0)
    - git (OPTIONAL, Tested on 2.18.0)
Download and unpack this repo, or just clone with git:
    $ git clone https://github.com/ZeeRooo/RTL8192EU.git
    $ cd RTL8192EU/
Build the module:
   $ make clean
   $ make
   # make install
Load our shiny module:
   # modprobe 8192eu


Si esto no te funciona prueba con lo siguiente:

If still doesn't work, follow below steps.

Código (bash) [Seleccionar]
$ make clean
$ make

$ sudo cp 8192eu.ko /lib/modules/5.2.0-kali2-amd64/kernel/drivers/net/wireless/

$ depmod -a

$ modprobe 8192eu

$ insmod 8192eu.ko

restart


Un saludo.