Ubuntu – How run a .jar file with a double-click

guijava

I have a problem running .jar files by double-clicking them. When I go to the Properties dialogue I can't find Java–only Archive Manager in the list of programs. But java -jar somefile.jar opens the program.

Best Answer

Maybe you don’t have the runtime environment installed!

To install it try the following instructions.

sudo apt-get install openjdk-7-jre

Or you could install Oracle JRE using the PPA method with the following commands.

sudo add-apt-repository ppa:ferramroberto/java
sudo apt-get update
sudo apt-get install sun-java6-jre sun-java6-plugin sun-java6-fonts

Then to use it to open .jar files try the following.

  1. Right click the .jar file > Properties.
  2. Click on the “Open With” tab along the top.
  3. Change the default choice to be the java runtime environment that you have installed.
  4. Click Close and you should be ready to double click.
Related Question