项目作者: fastoe

项目描述 :
Realtek RTL8812BU Driver for Linux
高级语言: C
项目地址: git://github.com/fastoe/RTL8812BU.git
创建时间: 2019-11-10T14:54:47Z
项目社区:https://github.com/fastoe/RTL8812BU

开源协议:

下载


Realtek RTL8812BU Driver for Linux

Build Status

Driver for 802.11ac USB adapter with RTL8812BU chipset, only STA/Monitor mode is supported, no AP mode.

A few known wireless cards that use this driver include:

  • Fastoe AC1200 USB Wi-Fi Adapter
  • Cudy WU1200 AC1200 High Gain USB Wi-Fi Adapter
  • TP-Link Archer T3U
  • TP-Link Archer T3U Plus
  • TP-Link Archer T4U V3
  • Linksys WUSB6400M
  • Dlink DWA-181
  • Dlink DWA-182

Currently tested with Linux kernel 4.12.14/4.15.0/5.3.0/5.15.0 on X86_64 platform only.

For Raspberry Pi

For kernel 5.11 or later, please clone the v5.13.1 branch:

  1. sudo apt update
  2. sudo apt install -y build-essential dkms git bc
  3. git clone -b v5.13.1 https://github.com/fastoe/RTL8812BU.git
  4. cd RTL8812BU
  5. make
  6. sudo make install
  7. sudo reboot

For 5.10 kernel, please clone the v5.6.1 branch:

  1. sudo apt update
  2. sudo apt install -y build-essential dkms git bc
  3. git clone -b v5.6.1 https://github.com/fastoe/RTL8812BU.git
  4. cd RTL8812BU
  5. make
  6. sudo make install
  7. sudo reboot

For 5.9 and previous versions:

  1. sudo apt update
  2. sudo apt install -y build-essential dkms git bc
  3. git clone https://github.com/fastoe/RTL8812BU.git
  4. cd RTL8812BU
  5. make
  6. sudo make install
  7. sudo reboot

For setting monitor mode:

  1. # configure for monitor mode
  2. sed -i 's/CONFIG_80211W = n/CONFIG_80211W = y/' Makefile
  3. sed -i 's/CONFIG_WIFI_MONITOR = n/CONFIG_WIFI_MONITOR = y/' Makefile
  4. make
  5. sudo make install
  6. sudo ip link set wlx1cbfcea97791 down
  7. sudo iw wlx1cbfcea97791 set monitor none
  8. sudo ip link set wlx1cbfcea97791 up

image

Enjoy!