Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/szybnev/tl-wn722n

Drivers for TL-WN722N TP-Link adapter
https://github.com/szybnev/tl-wn722n

linux wifi wifi-adapter

Last synced: about 1 month ago
JSON representation

Drivers for TL-WN722N TP-Link adapter

Awesome Lists containing this project

README

        

Commands to install correct drivers for
TP-Link TL-WN722N

# NOW NOT WORKING!!

### Install pkgs
```bash
sudo apt update
sudo apt upgrade
sudo apt install bc
sudo apt-get install build-essential
sudo apt-get install libelf-dev
sudo apt-get install linux-headers-`uname -r`
```

### Change drivers
```bash
sudo apt install dkms
sudo rmmod r8188eu.ko
git clone https://github.com/aircrack-ng/rtl8188eus
cd rtl8188eus
sudo -i
echo "blacklist r8188eu" > "/etc/modprobe.d/realtek.conf"
exit
sudo reboot
```

### After reboot
```bash
sudo apt update
cd rtl8188eus
sudo make
sudo make install
sudo modprobe 8188eu
````

### To enable Monitor mode and test packet injection:
``` bash
ip link set wlan1 down
sudo airmon-ng check kill
sudo airmon-ng start wlan1
ip link set wlan1 up
iwconfig
sudo aireplay-ng --test wlan0
```