XMind is my go-to mind mapping software for a few years now. More at https://www.xmind.net/
Challenge:
Using the XMind 8 Linux package (zip file) and following the, albeit brief, instructions at http://support.xmind.net/customer/en/portal/articles/2639667-begin-to-use-xmind-8-on-linux, you will see XMind launch with the GUI Splash screen but the program will fail and exit.Root-cause:
XMind is a Java-based application and it is sensitive to the version of Java. The default Java runtime in openSUSE Leap 15 is OpenJDK version 10.0.1 (dated 2018-04-17).Resolution:
Install the older OpenJDK version 1.8.0. Instead of removing the default version 10.0.1, I elected to install the older version 1.8.0 alongside and switch the default path for Java to 1.8.0.
Here are my steps:
zypper in java-1_8_0-openjdk
update-alternatives --config java
(followed by picking the newly installed jre-1.8.0)
Validate: java -version
That's it. Now, when we execute the XMind program, it will work and launched successfully.
Keep Calm & Carry On loving Linux!