Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/szybnev/tl-wn722n
- Owner: szybnev
- License: mit
- Archived: true
- Created: 2021-08-22T05:09:04.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-11-21T15:15:32.000Z (about 2 years ago)
- Last Synced: 2024-06-18T08:32:41.388Z (6 months ago)
- Topics: linux, wifi, wifi-adapter
- Language: Shell
- Homepage:
- Size: 7.81 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-starz - szybnev/tl-wn722n - Drivers for TL-WN722N TP-Link adapter (Shell)
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
```