Note: Iβm not an expert. Iβm writing this blog just to document my learning journey. π
Problems are inevitable, but always solvable.
π§ The Problem:
Burp Suite wasnβt starting due to Java compatibility issues on Parrot OS running on AArch64 (ARM 64-bit architecture).
π οΈ The Solution: Follow these 5 Simple Steps
1οΈβ£ Download Oracle JDK 21 (AArch64)
wget https://download.oracle.com/java/21/latest/jdk-21_linux-aarch64_bin.tar.gz
2οΈβ£ Extract and Move JDK to /opt
sudo tar -xvf jdk-21_linux-aarch64_bin.tar.gz -C /opt
sudo mv /opt/jdk-21* /opt/java-21
3οΈβ£ Set Java 21 as Default
sudo update-alternatives --install /usr/bin/java java /opt/java-21/bin/java 1
sudo update-alternatives --config java
Select the /opt/java-21/bin/java option when prompted.
4οΈβ£ Verify Java Installation
java -version
You should see output similar to:
java version "21" ...
5οΈβ£ Run Burp Suite
burpsuite
π Success!
"hahhahahha problem solved. Happy hacking β¨"
β tamilvanan
π‘ Pro Tip:
If you also need javac, repeat Step 3 for the compiler:
sudo update-alternatives --install /usr/bin/javac javac /opt/java-21/bin/javac 1
sudo update-alternatives --config javac
Top comments (0)