I'm trying to run Catalina on Ubuntu Linux using the debug command. I'm getting the following error:
JAVA_HOME should point to a JDK in order to run in debug mode.
/bin/sh died with exit status 1
However, I have tried setting JAVA_HOME in the .bashrc
to all of the following:
export JAVA_HOME="/usr/lib/jvm/java-1.7.0-openjdk-i386/"
export JAVA_HOME="/usr/lib/jvm/java-1.7.0-openjdk-i386"
export JAVA_HOME="/usr/lib/jvm/java-1.7.0-openjdk-i386/jre/bin"
export JAVA_HOME="/usr/lib/jvm/java-1.7.0-openjdk-i386/jre/bin/"
Am I missing anything?
echo $JAVA_HOME
and see what it gives you. In order to reload settings you can trysource ./.bashrc
– Coral