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)