I ran the installer using:
Code: Select all
bash -xu <<< "$(curl -fsSL https://raw.githubusercontent.com/filebot/plugins/master/installer/deb.sh)"
apt-cache show openjfx --no-all-versions
results in:
Code: Select all
# apt-cache show openjfx --no-all-versions
Package: openjfx
Architecture: amd64
Version: 11.0.2+1-1~18.04.2
Priority: optional
Section: universe/java
Origin: Ubuntu
Maintainer: Debian Java Maintainers <[email protected]>
Bugs: https://bugs.launchpad.net/ubuntu/+filebug
Installed-Size: 30
Depends: libopenjfx-java
Recommends: openjfx-source
Filename: pool/universe/o/openjfx/openjfx_11.0.2+1-1~18.04.2_amd64.deb
Size: 9032
MD5sum: a00d06f94dcfa8b579065f958dd76027
SHA1: d875edfa1ed5beb651dd8e90f8bea56c133e85af
SHA256: 0feec068c025efee496e34af33238422fc506fdbfcec6a4e334d228a07d38ea6
Homepage: https://openjfx.io
Description-en: JavaFX/OpenJFX - Rich client application platform for Java
JavaFX/OpenJFX is a set of graphics and media APIs that enables Java developers
to design, create, test, debug, and deploy rich client applications that
operate consistently across diverse platforms.
Description-md5: c81023d9b26926c1219881c76843995a
N: There is 1 additional record. Please use the '-a' switch to see it
However:
This points to the java contained in the old portable Filebot installation which is Java 8.
So, I delete
/usr/local/bin/java which is a symlink. And then:
Code: Select all
# which java
/usr/bin/java
# which filebot
/usr/bin/filebot
Good, but oh, oh:
Code: Select all
# filebot -version
Error: LinkageError occurred while loading main class net.filebot.Main
java.lang.UnsupportedClassVersionError: net/filebot/Main has been compiled by a more recent version of the Java Runtime (class file version 55.0), this version of the Java Runtime only recognizes class file versions up to 54.0
All right, found out that Mint 19 is based on Ubuntu 18.04. So, according to the Debian instructions for Filebot, I need Java 8.
Deleted Java 11 which automatically installed Java 8 (cool, I guess). Updated sources list and installed Filebot.
Now:
Code: Select all
# filebot -version
FileBot 4.8.5 (r6224) / Java(TM) SE Runtime Environment 1.8.0_221 / Linux 4.15.0-42-generic (amd64)
So, all is good right now. On to testing to find the next problem.
Thanks.