Hi,when I install S32DS_ARM_Linux_v1.3.bin in ubuntu 14.04, I got messege in shell:
Preparing to install...
Extracting the installation resources from the installer archive...
Configuring the installer for this system's environment...
No Java virtual machine could be found from your PATH environment variable. You must install a VM prior to running this program.
But I have installed java and java version is:
user@ubuntu:~$ java -version
java version "1.7.0_80"
Java(TM) SE Runtime Environment (build 1.7.0_80-b15)
Java HotSpot(TM) 64-Bit Server VM (build 24.80-b11, mixed mode).
Also I have set necessary environment variables in .bashrc:
export JAVA_HOME=/usr/lib/jvm/jdk1.7.0_80
export JRE_HOME=${JAVA_HOME}/jre
export CLASSPATH=.:${JAVA_HOME}/lib:${JRE_HOME}/lib
export PATH=${JAVA_HOME}/bin:${JRE_HOME}:${CLASSPATH}:$PATH
Are any other environment variables that I didn't set or I should add some path in PATH? Or the jre version is not correct?