Table of Contents

, , , , ,

(Semiautomated) Install Eclipse IDE on OpenSUSE Tumbleweed

Sources

Installation

get the direct link to the desired eclipse SDK download here:

# as root
zypper ref && zypper dup
zypper install java-11-openjdk java-11-openjdk-headless

MYDIR="${HOME}/repos/download/eclipse"
mkdir -pv "${MYDIR}"
wget -P "${MYDIR}" https://ftp.fau.de/eclipse/eclipse/downloads/drops4/R-4.21-202109060500/eclipse-SDK-4.21-linux-gtk-x86_64.tar.gz
tar -xzvf "${MYDIR}"/eclipse-SDK-4.21-linux-gtk-x86_64.tar.gz -C "${MYDIR}"


~~DISCUSSION~~