Open itsfuad opened 1 year ago
Without the USB ID from lsusb, we will never be able to make it work.
Nice to see replies from you. So what to do after getting the USB ID?
Tell me what it is. That way I can tell if it your device is not in the code. What did you think I wanted?
Well, I got [0bda:b711] as the USB ID by running lsusb.
The thing is, It has monitor mode support. I can monitor from Windows. But I got 'monitor mode is not supported' message from ParrotOS. Is that driver issue or real hardware issue?
Hiya @lwfinger, I have the same issue with the device OP mentioned, Here's the lsusb
output:
ID 0bda:b711 Realtek Semiconductor Corp. RTL8188GU 802.11n WLAN Adapter (After Modeswitch)
The driver from https://github.com/McMCCRU/rtl8188gu does seem to work with the device, but it has some known issues that are happening to me too.
Additionally, here's the output from uname -rm
:
5.19.0-43-generic x86_64
In all my sources, that USB ID only shows as belonging to the RTL8710B, also know as RTL8188GU.
If that repo does not work, why not try my repo at https://github.com:lwfinger/rtl8188gu.git. That device is
Kernel 6.4 will drive this device using rtl8xxxu.
Someone backported rtl8xxxu to kernel 6.0-6.3: https://github.com/a5a5aa555oo/rtl8xxxu Maybe it can support 5.19 too if you ask.
I just created a repository at https://github.com/lwfinger/rtl8xxxu.git that will build on kernels 5.15 through 6.4.
I just created a repository at https://github.com/lwfinger/rtl8xxxu.git that will build on kernels 5.15 through 6.4.
That's works real nice on 5.15... and 6.3.5 and so you become a new bigger THANK YOU !
If that repo does not work, why not try my repo at https://github.com:lwfinger/rtl8188gu.git
Tried it first actually, didn't work for my device.
I just created a repository at https://github.com/lwfinger/rtl8xxxu.git that will build on kernels 5.15 through 6.4.
Is there support for 5.19 yet, @lwfinger? I ask because I just tried to compile it on my pc which has a 5.19.0-42-generic
kernel. The compilation didn't work. I am attaching the error logs below if you want to take a look at it.
I pushed a fix. Do a 'git pull' and make it again.
It's working great now. Thanks a bunch @lwfinger.
I didn't need to do the modeswitch since mine was done already. The following worked like a charm:
make clean modules
sudo make install
sudo modprobe rtl8xxxu_git
For future notes though, since you are supporting 5.19.0 as well, you might want to take a look at dkms.conf in that repo. dkms
install fails on my pc due to this:
BUILD_EXCLUSIVE_KERNEL="^6.*"
I am getting this error. Can someone help me?🙏
As the message says, you need to install the correct headers. I do not use Kali, thus I cannot give you any tips.
I am getting this error. Can someone help me?🙏
It worked for a few times, but after that , it cannot find any targets.
@jatink2004 Someone reported that problem with the RTL8188EU. Maybe the same fix can help you too:
diff --git a/rtl8xxxu_8710b.c b/rtl8xxxu_8710b.c
index 871b8cc..1778016 100644
--- a/rtl8xxxu_8710b.c
+++ b/rtl8xxxu_8710b.c
@@ -1757,7 +1757,7 @@ static void rtl8710b_disable_rf(struct rtl8xxxu_priv *priv)
rtl8xxxu_write32(priv, REG_OFDM0_TRX_PATH_ENABLE, val32);
/* Power down RF module */
- rtl8xxxu_write_rfreg(priv, RF_A, RF6052_REG_AC, 0);
+ // rtl8xxxu_write_rfreg(priv, RF_A, RF6052_REG_AC, 0);
}
static void rtl8710b_usb_quirks(struct rtl8xxxu_priv *priv)
Tenda W311MI uses RTL8188GU but it do not work with any of linux destros.