mirror of
https://github.com/aircrack-ng/rtl8812au.git
synced 2025-02-01 13:30:09 +00:00
Update README.md
This commit is contained in:
parent
79e5553ada
commit
41b9192686
33
README.md
33
README.md
@ -38,11 +38,44 @@ Download
|
|||||||
git clone https://github.com/aircrack-ng/rtl8812au.git
|
git clone https://github.com/aircrack-ng/rtl8812au.git
|
||||||
cd rtl*
|
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.
|
Maybe you should install some packet to build it.
|
||||||
```
|
```
|
||||||
sudo apt-get install build-essential
|
sudo apt-get install build-essential
|
||||||
sudo apt-get install linux-headers-`uname -r`
|
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
|
For Ubuntu 17.04 add the following lines
|
||||||
```
|
```
|
||||||
[device]
|
[device]
|
||||||
|
Loading…
Reference in New Issue
Block a user