SceneBuilder crashed on startup

I installed SceneBuilder 8.3.0 on Ubuntu Gnome 17.04 with Java Hotspot 1.8.0_131 installed, but when I try to start it, an error occurs that makes it impossible to initialize. I have already tried installing Oracle SceneBuilder 2.0, but the same error occurs.

Error Part 1Error Part 2Error Part 3Error Part 4

Do you know what it can be and how I can solve it?

Thank you in advance!

+5
source share
1 answer

I noticed that when calling directly to the java file "dist.jar" using the java hot spot, the SceneBuilder script runs smoothly ("java-jar / opt / SceneBuilder / app / dist.jar"). Thus, one way to solve this problem is to change the file "/usr/share/applications/SceneBuilder.desktop" and change the line:

Exec=/opt/SceneBuilder/SceneBuilder 

for

 Exec=java -jar /opt/SceneBuilder/app/dist.jar 
+4
source

Source: https://habr.com/ru/post/1269040/


All Articles