This post is more for my memory than anything. I always forget and need to dig around to figure out how (or more importantly “where”) to set JAVA_HOME in Ubuntu. It’s pretty simple.

  1. Find the location of your jvm. ex: /usr/lib/jvm/java-6-sun/
  2. Add a line to your environment file:
    
    sudo pico /etc/environment
    

    Then just add the following to the end (or whatever the location of your jvm was):

    
    JAVA_HOME=/usr/lib/jvm/java-6-sun/
    
  3. Log out, and log back in.
  4. Open a terminal and run “echo $JAVA_HOME”, which should give you /usr/lib/jvm/java-6-sun/
Be Sociable, Share!

Related posts:

  1. What Happens with MySQL? VirtualBox? Java?
  2. Is Prism, JavaFX, and Air Such a Big Deal?
  3. 5 Reasons A Dark Theme will Ruin Ubuntu
  4. Ubuntu Needs a Kick-Start Program
  5. Connect to SQL Server from Ubuntu: Part II