IcedTea plugin for OpenJDK 8

I updated from OpenJDK 7 to 8. I uninstalled 7, which uninstalled the IcedTea plugin as well. I tried to reinstall IcedTea with

 sudo apt-get install icedtea-7-plugin

But it doesn't work. When I try to launch topcoder jnlp file, it fails. Also, it doesn't load any java plugin in Google Chrome. It was fine with OpenJDK 7. Is there a newer version of IcedTea for OpenJDK 8?

3 Answers

At the moment, icedtea-8-plugin is not available in the official Ubuntu repositories. Maarten Fonville offers a PPA repository with a working icedtea-8-plugin package.

sudo add-apt-repository ppa:maarten-fonville/ppa
sudo apt-get update
sudo apt-get install icedtea-8-plugin

Bug report:

PPA page:

If you're using Ubuntu 14.04 (for which openjdk-8-jre is not yet backported), then for the time being the OpenJDK ppa must be added first:

sudo apt-add-repository ppa:openjdk-r/ppa

Recent versions of Chrome do not support the Java plugin (cf. How do I get Java plugin working on Google Chrome?).

2

The file you want to install is icedtea-plugin. Just press Ctrl+Alt+T on your keyboard to open Terminal. When it opens, run the command(s) below:

sudo apt-get install icedtea-plugin
4

When you are not sure what's the exact name of package like icedtea-7-plugin or icedtea-8-plugin, etc. Do a package name wise search before installing, for example search for "icedtea" word as follows:

$ sudo apt-get update
$ apt-cache search icedtea

This will display the matching package with word "icedtea" as follows:

icedtea-8-plugin - web browser plugin based on OpenJDK and IcedTea to execute Java applets
icedtea-netx - NetX - implementation of the Java Network Launching Protocol (JNLP)
icedtea-netx-common - NetX - implementation of the Java Network Launching Protocol (JNLP)
icedtea-plugin - web browser plugin to execute Java applets (dependency package)

By this you can decide which one to install..!

With the above output, use:

$ sudo apt-get install icedtea-8-plugin

The prior searching of package name will be helpful for any packages you need to install. If you are having back port issue, for the case of Ubuntu 14.04, then you may refer answer from @jthetzel.

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy

You Might Also Like