Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
360controller | 6,492 | 10 months ago | 270 | gpl-2.0 | C++ | |||||
TattieBogle Xbox 360 Driver (with improvements) | ||||||||||
Usb Wifi | 1,555 | 2 days ago | 140 | |||||||
USB WiFi Adapter Information for Linux | ||||||||||
Xow | 1,301 | a year ago | 47 | gpl-2.0 | C++ | |||||
Linux driver for the Xbox One wireless dongle | ||||||||||
Pi Pwnbox Rogueap | 1,263 | 3 months ago | 6 | gpl-3.0 | Shell | |||||
Homemade Pwnbox :rocket: / Rogue AP :satellite: based on Raspberry Pi — WiFi Hacking Cheatsheets + MindMap :bulb: | ||||||||||
Rtl8812au_8821au_linux | 1,147 | 3 years ago | 143 | gpl-2.0 | C | |||||
rtl8812AU_8821AU linux kernel driver for AC1200 (801.11ac) Wireless Dual-Band USB Adapter | ||||||||||
Xone | 1,108 | 3 months ago | 12 | gpl-2.0 | C | |||||
Linux kernel driver for Xbox One and Xbox Series X|S accessories | ||||||||||
Wireless Carplay Dongle Reverse Engineering | 526 | 20 days ago | 9 | gpl-3.0 | Shell | |||||
CPlay2Air / Carlinkit Wireless Apple CarPlay Dongle reverse engineering | ||||||||||
Rucky | 402 | 3 months ago | 2 | gpl-3.0 | Java | |||||
A simple to use USB HID Rubber Ducky Launch Pad for Android. | ||||||||||
Open Ath9k Htc Firmware | 380 | a year ago | 79 | other | C | |||||
The firmware for QCA AR7010/AR9271 802.11n USB NICs | ||||||||||
Xboxdrv | 372 | a year ago | 140 | gpl-3.0 | C++ | |||||
xboxdrv moved to |
Realtek 8812AU/8821AU USB WiFi driver.
for AC1200 (801.11ac) Wireless Dual-Band USB Adapter
This code is base on version 4.3.14 from diederikdehaas/rtl8812AU
This code was forked from abperiasamy/rtl8812AU_8821AU_linux
* COMFAST 1200Mbps USB Wireless Adapter(Model: CF-912AC)
* TP-LINK AC1200 Wireless Dual Band USB Adapter(Model: Archer-T4U)
* TP-LINK AC600 Wireless Dual Band USB Adapter(Model: Archer-T2U Nano)
# sudo make -f Makefile.dkms install
# CONFIG_PLATFORM_ARM_JET_NANO = y
Install kernel headers and other dependencies.
# sudo apt-get install linux-image-rpi-rpfv linux-headers-rpi-rpfv raspberrypi-kernel-headers dkms build-essential bc
Install kernel headers: https://github.com/notro/rpi-source/wiki
sudo wget https://raw.githubusercontent.com/notro/rpi-source/master/rpi-source -O /usr/local/bin/rpi-source && sudo chmod +x /usr/local/bin/rpi-source && /usr/local/bin/rpi-source -q --tag-update
rpi-source
Edit Makefile and turn on CONFIG_PLATFORM_ARM_RPI
, turn off CONFIG_PLATFORM_I386_PC
CONFIG_PLATFORM_I386_PC = n
CONFIG_PLATFORM_ARM_RPI = y
# cd /usr/src/rtl8812au
# sudo make clean
# sudo make -j4
# sudo make install
# sudo modprobe -a rtl8812au
Download archive into temp directory
# mkdir -p /tmp/t4u
# cd /tmp/t4u
# wget https://github.com/abperiasamy/rtl8812AU_8821AU_linux/archive/master.zip
Unzip
# unzip master.zip
# cd rtl8812AU_8821AU_linux-master
Install kernel headers
# sudo apt install linux-headers-$(uname -r)
Compile and install from source
# make
# sudo make install
Load module
# sudo modprobe -a rtl8812au
KSRC=/home/greearb/git/openwrt-neo2-dev/build_dir/target-aarch64_cortex-a53_musl/linux-sunxi_cortexa53/linux-4.14.78 EXT_EXTRA_CFLAGS=-DCONFIG_LITTLE_ENDIAN ARCH=arm64 CROSS_COMPILE=aarch64-openwrt-linux- MODDESTDIR=/tmp make V=1
Setup DKMS
# sudo apt-get update
# sudo apt-get install dkms
# cd /tmp/t4u/rtl8812AU_8821AU_linux-master/
# sudo cp -R . /usr/src/rtl8812AU_8821AU_linux-1.0
# sudo dkms add -m rtl8812AU_8821AU_linux -v 1.0
# sudo dkms build -m rtl8812AU_8821AU_linux -v 1.0
# sudo dkms install -m rtl8812AU_8821AU_linux -v 1.0