Install Java 16 on Raspberry Pi 4
Asked Answered
B

1

5

I have tried multiple releases from here using :

sudo -i 
cd /usr/lib/jvm
wget [release link here]
tar xzf [file name here]
export PATH=$PWD/[dir here]/bin:$PATH
java -version

But after java -version I always get:

/usr/lib/jvm/[dir here]/bin/java: cannot execute binary file: Exec format error

Which means I have chosen the wrong release/architecture. Is there a release that works with Raspberry Pi's or is there another way to install Java 16?

Burundi answered 9/6, 2021 at 6:18 Comment(6)
Which one did you try? The Raspberry may need some of the "arm" based releases.Variegation
Tried some ARM based ones and eventually got it to work thanks to this thread: Reddit. Thanks for the help anyways :)Burundi
Please have a look on this answer from RaspberryPi-SEAngeliaangelic
@Angeliaangelic This question is for Java 16.Burundi
@Burundi the answer is adaptable to any custom java installationAngeliaangelic
There is a raspberry pi forum here: raspberrypi.stackexchange.comDeutschland
B
13

Answering my own question.

cd [minecraft directory here]

wget https://github.com/AdoptOpenJDK/openjdk16-binaries/releases/download/jdk16u-2021-05-08-12-45/OpenJDK16U-jdk_arm_linux_hotspot_2021-05-08-12-45.tar.gz

tar xzf OpenJDK16U-jdk_arm_linux_hotspot_2021-05-08-12-45.tar.gz

export PATH=$PWD/jdk-16.0.1+4/bin:$PATH

java -version

You might have to do export PATH=$PWD/jdk-16.0.1+4/bin:$PATH after a reboot

Burundi answered 11/6, 2021 at 11:41 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.