My kid really wants me to upgrade the minecraft server I run from 1.17.1 to 1.18, but when I tried, I found that it required Java 18. It looks like Java 18 is only available on the latest release of Ubuntu, but I want to stick with the LTS releases. Is there a backport available for Java 18?
Asked
Active
Viewed 1.3k times
3
1 Answers
5
Since Java Edition 1.17(21w19a), Minecraft requires Java 16 or newer. In Ubuntu 20.04 and later you can meet this requirement by installing openjdk-17-jre as follows:
sudo apt update
sudo apt install openjdk-17-jre
Alternatively in Ubuntu 22.04 and later you can also meet this requirement by installing openjdk-18-jre with sudo apt install openjdk-18-jre

karel
- 114,770
sudo apt install openjdk-17-jre
– jrennie Dec 04 '21 at 14:43