News article

Eclipse Temurin Linux (RPM/DEB) installer packages

Eclipse Temurin RPM and DEB packages are now available for installing on your favourite Linux distribution. Eclipse Temurin Package Names Th…
George Adams
George Adams, December 30, 2021

Eclipse Temurin RPM and DEB packages are now available for installing on your favourite Linux distribution.

Eclipse Temurin Package Names

The following name schema is being used:

temurin-<version>-jdk
e.g temurin-17-jdk or temurin-8-jdk

Deb installation on Debian or Ubuntu

  1. Ensure the necessary packages are present:

    apt-get install -y wget apt-transport-https gnupg
  2. Download the Eclipse Adoptium GPG key:

    wget -O - https://packages.adoptium.net/artifactory/api/gpg/key/public | apt-key add -
  3. Configure the Eclipse Adoptium apt repository by replacing the values in angle brackets:

    echo "deb https://packages.adoptium.net/artifactory/deb $(awk -F= '/^VERSION_CODENAME/{print$2}' /etc/os-release) main" | tee /etc/apt/sources.list.d/adoptium.list
  4. Install the Temurin version you require:

    apt-get update # update if you haven't already
    apt-get install temurin-17-jdk

CentOS/RHEL/Fedora Instructions

  1. Add the RPM repository to /etc/yum.repos.d/adoptium.repo making sure to change the CentOS version if you are not using CentOS 8, and if you are on a 32-bit ARM system, replace $(uname -m) with armv7hl. RPMs are also available for RHEL and Fedora. To check the full list of versions supported take a look at the list in the tree at https://packages.adoptium.net/ui/repos/tree/General after clicking the “Artifacts” link on the left

    cat <<EOF > /etc/yum.repos.d/adoptium.repo
    [Adoptium]
    name=Adoptium
    baseurl=https://packages.adoptium.net/artifactory/rpm/centos/8/$(uname -m)
    enabled=1
    gpgcheck=1
    gpgkey=https://packages.adoptium.net/artifactory/api/gpg/key/public
    EOF
  2. Install the Temurin version you require:

    yum update # update if you haven't already
    yum install temurin-17-jdk

openSUSE/SLES Instructions

  1. Import the RPM repository making sure to change the openSUSE version if you are not using OpenSUSE 15.2. RPM’s are also available for SLES 12 and 15. To check the full list of versions supported take a look at https://packages.adoptium.net/ui/repos/tree/General/rpm.

    zypper ar -f https://packages.adoptium.net/artifactory/rpm/opensuse/15.2/$(uname -m) adoptium
  2. Install the Temurin version you require:

    zypper install temurin-17-jdk

Please raise any issues over at https://github.com/adoptium/installer/issues.

Related Articles
Eclipse Temurin offers high-performance, cross-platform, open-source Java runtime binaries that are enterprise-ready and Java SE TCK-tested for general use in the Java ecosystem.
blog banner image

Eclipse Temurin 8u442, 11.0.26, 17.0.14, 21.0.6 and 23.0.2 Available

February 07, 2025

Adoptium is happy to announce the immediate availability of Eclipse Temurin 8u442-b06, 11.0.26+4, 17.0.14+7, 21.0.6+7 and 23.0.2+7. As…Read More
blog banner image

Eclipse Temurin 8u432, 11.0.25, 17.0.13, 21.0.5 and 23.0.1 Available

November 04, 2024

Adoptium is happy to announce the immediate availability of Eclipse Temurin 8u432-b06, 11.0.25+9, 17.0.13+11, 21.0.5+11 and 23.0.1+11. As…Read More
blog banner image

Eclipse Temurin 23 Available

September 20, 2024

Adoptium is happy to announce the immediate availability of Eclipse Temurin 23+37. As always, all binaries are thoroughly tested and…Read More

Thank you to our 300+contributors