Skip to content

Instantly share code, notes, and snippets.

@universal
Last active February 17, 2021 07:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save universal/1640cddb9dd7c51a99b6359eb606bfe9 to your computer and use it in GitHub Desktop.
Save universal/1640cddb9dd7c51a99b6359eb606bfe9 to your computer and use it in GitHub Desktop.
binder / templateinstaller under buster

Other OS

see jabref help: https://github.com/JabRef/help.jabref.org/blob/gh-pages/en/Installation.md#ubuntu-and-oracle-java

General

Using oracle jdk8 works as well, though it involves a little bit of extra work, as it now requires login before allowing one to download it, as the license changed (personal use is fine though)

  • go to: https://www.oracle.com/technetwork/java/javase/downloads/jdk8-downloads-2133151.html
  • download the linux 64bit package
  • unpack the downloaded file to a place of your chosing UNPACKED_PATH
  • add the UNPACKED_PATH/jdk1.8.0_221/bin to your path: export PATH=$PATH:UNPACKED_PATH/jdk1.8.0_221/bin (replace unpacked path with actual path)
  • start binder/template installer with: java -jar XXX
  • alternatively: UNPACKED_PATH/jdk1.8.0_221/bin/java -jar einkpads-binder.jar and put this into a .desktop file :-)

Ubuntu 18.04

verbose copy from the jabref help -- credits to them :-)

  • if you accidently installed the new version, remove it with sudo apt purge openjfx.
  • Install an older version with sudo apt install openjfx=8u161-b12-1ubuntu2 libopenjfx-jni=8u161-b12-1ubuntu2 libopenjfx-java=8u161-b12-1ubuntu2.
  • To prevent the software updater from installing the newer not supported version, mark it to be not updated with sudo apt-mark hold openjfx libopenjfx-jni libopenjfx-java.

Debian Buster (using packages from stretch)

It is most likely better to follow the general steps above and not add the stretch repository to apt...

Requires some special love, since version 8.X of openjfx has been dropped completely from buster, but right now we still need it for binder/templateinstaller to work. The ppa providing oracle jdk doesn't have java8 anymore as well, as oracle now requires a login for a download... (see https://launchpad.net/~webupd8team/+archive/ubuntu/java). But for now we can use the packages from stretch (the previous debian version)

Therefore proceed with caution and no guarantees given ;)

Add stretch repo

  • remove openjfx11 if already installed: sudo apt remove openjfx

  • sudo apt autoremove

  • create /etc/apt/sources.list.d/stretch.list with the following content:

    deb http://ftp.de.debian.org/debian/ stretch main contrib non-free deb-src http://ftp.de.debian.org/debian/ stretch main contrib non-free

    deb http://security.debian.org/ stretch/updates main contrib non-free

  • sudo apt update

  • sudo apt -t stretch install openjfx

  • sudo apt-mark hold openjfx libopenjfx-jni libopenjfx-java

PROFIT!

@PeterNJackson
Copy link

Do you have a Ubuntu 20.04 install document?

@universal
Copy link
Author

universal commented Feb 17, 2021

Do you have a Ubuntu 20.04 install document?

not using binder anymore... so haven't tried it under 20.04. didn't really need the app and they didn't appear too competent regarding packaging a java app.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment