Run problem in opensuse 13.2

Hello , I have problem with run jmonkeyengine IDE ( netbeans ) in Opensuse 13.2 i586.
I downloaded jmonkeyengine for linux 32bit and install .sh file then I want to run software that I installed , it just show a running tab in task bar then close and show nothing .
What’s the problem ? why it can’t run?

Maybe related to this?

I think , it’s not . because I installed that and JME find the open jdk , also JME build the running icon in my application part in opensuse, but the problem is JME IDE can’t running without any messages , just close .
Thank you for your help.

Run in terminal - then you will see why it can’t start.

1 Like

Thank you so much my friend , when I’m trying to run with terminal’s command , I search in files then find the JME program , then I go in properties and then I copy it’s command and paste in terminal and finally it works .
Thank you , your solution was perfect . :smiley:

The command was
/bin/sh “/usr/local/jmonkeyplatform/bin/jmonkeyplatform”

If you’re on Ubutntu, the best way to make it work is as follows:

  1. Add the Oracle Java Repos (part of the WebUpd8 PPA) - Oracle Java (JDK) 8 Installer PPA (DISCONTINUED) : “WebUpd8” team
  2. Install Oracle Java 7 & 8 (Don’t install 9 for now):

    sudo apt-get update
    sudo apt-get install oracle-java-7
    sudo apt-get install oracle-java-8

  3. Configure the SDK to use your Oracle Java 8 instance:

vim /jmonkeyplatform/etc/jmonkeyplatform.conff
edit/add line: netbeans_jdkhome=“/usr/lib/jvm/oracle-java-8”’

You should be good to go then.

You are right, Thanks for your help