From 79e5553ada04dc848032f97bddfd9851ed016030 Mon Sep 17 00:00:00 2001 From: qwikwit Date: Thu, 14 Sep 2017 08:48:52 -0400 Subject: [PATCH 1/6] Update README.md --- README.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/README.md b/README.md index 34c6e27..6c59c1b 100644 --- a/README.md +++ b/README.md @@ -33,6 +33,16 @@ make install RTL8814=1 ``` ## Notes +Download +``` +git clone https://github.com/aircrack-ng/rtl8812au.git +cd rtl* +``` +Maybe you should install some packet to build it. +``` +sudo apt-get install build-essential +sudo apt-get install linux-headers-`uname -r` +``` For Ubuntu 17.04 add the following lines ``` [device] From 41b9192686fad7792eab9e0ed87aa956a2da7e45 Mon Sep 17 00:00:00 2001 From: qwikwit Date: Sun, 17 Sep 2017 07:55:41 -0400 Subject: [PATCH 2/6] Update README.md --- README.md | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) diff --git a/README.md b/README.md index 6c59c1b..ddcaac9 100644 --- a/README.md +++ b/README.md @@ -38,11 +38,44 @@ Download git clone https://github.com/aircrack-ng/rtl8812au.git cd rtl* ``` +To download v4.3.21 +``` +git clone -b v4.3.21 https://github.com/aircrack-ng/rtl8812au.git +``` Maybe you should install some packet to build it. ``` sudo apt-get install build-essential sudo apt-get install linux-headers-`uname -r` ``` +For setting monitor mode + 1. Fix problematic interference in monitor mode + ``` + airmon-ng check kill + ``` + Or + + Uncheck the box "Automatically connect to this network when it is avaiable" in nm-connection-editor. This only works if you have a saved wifi connection + + 2. Set interface down + ``` + sudo ip link set wlan0 down + ``` + 3. Set monitor mode + ``` + sudo iw dev wlan0 set type monitor + ``` + 4. Set interface up + ``` + sudo ip link set wlan0 up + ``` +For setting TX power (v4.3.21 branch only): +``` +sudo iwconfig wlan0 txpower 30 +``` +or +``` +sudo iw wlan0 set txpower fixed 3000 +``` For Ubuntu 17.04 add the following lines ``` [device] From 22eefdb74c7eaa6a7bc5846e91c66be8a0dfbc9f Mon Sep 17 00:00:00 2001 From: qwikwit Date: Sun, 17 Sep 2017 08:01:07 -0400 Subject: [PATCH 3/6] Update README.md --- README.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/README.md b/README.md index ddcaac9..116cce9 100644 --- a/README.md +++ b/README.md @@ -52,9 +52,7 @@ For setting monitor mode ``` airmon-ng check kill ``` - Or - - Uncheck the box "Automatically connect to this network when it is avaiable" in nm-connection-editor. This only works if you have a saved wifi connection + Or Uncheck the box "Automatically connect to this network when it is avaiable" in nm-connection-editor. This only works if you have a saved wifi connection 2. Set interface down ``` From 312e6888cfc55bfcf52afa8ca11c11578d859eb7 Mon Sep 17 00:00:00 2001 From: qwikwit Date: Sun, 17 Sep 2017 08:02:11 -0400 Subject: [PATCH 4/6] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 116cce9..4767890 100644 --- a/README.md +++ b/README.md @@ -48,11 +48,11 @@ sudo apt-get install build-essential sudo apt-get install linux-headers-`uname -r` ``` For setting monitor mode - 1. Fix problematic interference in monitor mode + 1. Fix problematic interference in monitor mode. ``` airmon-ng check kill ``` - Or Uncheck the box "Automatically connect to this network when it is avaiable" in nm-connection-editor. This only works if you have a saved wifi connection + Or Uncheck the box "Automatically connect to this network when it is avaiable" in nm-connection-editor. This only works if you have a saved wifi connection. 2. Set interface down ``` From d8a60d9ae83add311b574cd3a3da3c2a8215a4bf Mon Sep 17 00:00:00 2001 From: qwikwit Date: Sun, 17 Sep 2017 08:02:53 -0400 Subject: [PATCH 5/6] Update README.md --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 4767890..764c8ff 100644 --- a/README.md +++ b/README.md @@ -96,4 +96,5 @@ gnab - https://github.com/gnab/rtl8812au zebulon2 - https://github.com/zebulon2/rtl8812au paspro - https://github.com/paspro/rtl8812au ulli-kroll - https://github.com/ulli-kroll/rtl8821au +tpircher - https://github.com/tpircher/rtl8814AU ``` From 8cee2fa313e89451b881bdf3d225c44f598c8d6a Mon Sep 17 00:00:00 2001 From: qwikwit Date: Sun, 17 Sep 2017 08:05:31 -0400 Subject: [PATCH 6/6] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 764c8ff..88cd2bf 100644 --- a/README.md +++ b/README.md @@ -48,11 +48,11 @@ sudo apt-get install build-essential sudo apt-get install linux-headers-`uname -r` ``` For setting monitor mode - 1. Fix problematic interference in monitor mode. + 1. Fix problematic interference in monitor mode. ``` airmon-ng check kill ``` - Or Uncheck the box "Automatically connect to this network when it is avaiable" in nm-connection-editor. This only works if you have a saved wifi connection. + You may also uncheck the box "Automatically connect to this network when it is avaiable" in nm-connection-editor. This only works if you have a saved wifi connection. 2. Set interface down ```