Just downloaded and installed parrot yesterday on rpi4b.
Ran apt-uprade and noticed my external wifi adapter with rtl8812au wasnt detected.
Tried installing different drivers but none seem to work in monitor mode and packet injection. When i install kali it works. Anyone can help?
just got my external wifi adapter rtl8812au/rtl8821au working on pi4b with this:
git clone Kali Linux / Packages / realtek-rtl88xxau-dkms · GitLab
cd real*
sed -i ‘s/CONFIG_PLATFORM_I386_PC = y/CONFIG_PLATFORM_I386_PC = n/g’ Makefile
sed -i ‘s/CONFIG_PLATFORM_ARM64_RPI = n/CONFIG_PLATFORM_ARM64_RPI = y/g’ Makefile
export ARCH=arm64
sed -i ‘s/^MAKE="/MAKE="ARCH=arm64\ /’ dkms.conf
sudo make dkms_install
make && make install
To put in monitor mode “iwconfig wlan1 mode monitor”, both monitor and packet injection work
2 Likes
This topic was automatically closed 120 days after the last reply. New replies are no longer allowed.