Setting JAVA_HOME on Ubuntu 10.x
- by user20285
I'm trying to get the Rhodes framework installed so I can develop Android apps.
This requires that I install the SUN JDK and add JAVA_HOME and JAVA_HOME/bin to path.
I thought I could solve this by editing my bash.bashrc file:
JAVA_HOME="/usr/lib/jvm/java-6-sun/jre/bin/java"
export JAVA_HOME
PATH=$PATH:$JAVA_HOME/bin
This still doesn't…