ich habe auch das gleiche Problem , habe auch versucht mit stärkere Antenne aber hat nichts gebracht.
Habe keine Ahnung über unbuntu und linux .
irgendwie muss man treiber (rtl8187) in blacklist rtl8187 tun
um Handshake zu machen muss der Treiber r8187 , wenn wir airmon-ng eingeben.
Habe diese Anleitung gefunden: aber habe leider keine Zeit zum ausprobieren: auf english leider-----------------
Ok so first things first open up bash and type this. You can also navigate to the location and open it with kate but doing it in bash makes you just feel smarter.
Quote:
nano /etc/modprobe.d/blacklist
A quick note, the blacklist file is basically a list of the drivers that are installed but that we dont want to load. Nano is a bash text editor btw.
Scroll down to the bottom and paste this line in there.
Quote:
blacklist rtl8187
Now that we have told BT4 not to use the current drivers on the next reboot we need to install the ones we want it to use, the ieee ones.
Ok there is a way to do this all in bash but for whatever reason i cant get wget to work rite now so just download these 2 files manually.
http://patches.aircrack-ng.org/rtl8187_2.6.27.patch
http://dl.aircrack-ng.org/drivers/rt...ux_26.1010.zip
You might have to right click and choose save as for the first one as it doesnt want to automatically save.
We need to extract whats inside the zip so make sure your in the same directory as your files in bash and do
Quote:
unzip rtl8187_linux_26.1010.zip
There are also 2 tar files that need to be extracted so do
Quote:
cd rtl8187_linux_26.1010.0622.2006/
tar xzf drv.tar.gz
tar xzf stack.tar.gz
You can do all this in Konqueror but its good to learn bash and it's also easer to explain.
There is one file that needs to be edited before we can start so once everything is extracted do
Quote:
nano beta-8187/r8187.h
You need to scroll down to lines 46 and 47 and change 'asm' to 'linux' it should look like this
Quote:
#include <asm/io.h>
#include <asm/semaphore.h>
and needs to be changed to
#include <linux/io.h>
#include <linux/semaphore.h>
Now we need to move the .patch file into the rtl8187_linux_26.1010.0622.2006 folder, I just do it through the GUI but you can also do it through bash, either way when its there we can start patching the file
Making sure your in the rtl8187_linux_26.1010.0622.2006 folder and rtl8187_2.6.27.patch is in there also do
Quote:
patch -Np1 -i rtl8187_2.6.27.patch
now all we need to do is give it the make commands so do
Quote:
make
make install
After that we just do a simple reboot, when your back up to make sure its working and do
Quote:
airmon-ng start wlan0
If it says r8187 under driver it worked, if it still says rtl8187 make sure you followed everything exactly and that you wrote blacklist rtl8187 in the blacklist file.
Now to switch back and forth between drivers just edit the blacklist file to contain blacklist "blacklist rtl8187" or "blacklist r8187" respectively "Im sure there is a better way than rebooting so if someone wants to fill me in im all ears"
Assuming you got that installed correctly lets move along to mdk3, I had originally wrote this with easy to follow steps but im having second thoughts. This way atleast total n00bs wont get it ... or atleast i hope.
Quote:
apt-get install gcc-4.2