7

On Ubuntu 11.10 (oneiric), I installed openjdk-7-jre openjdk-7-jdk but could not find icedtea7-plugin. How to get the plugin?

$ java -version
java version "1.7.0_147-icedtea"
OpenJDK Runtime Environment (IcedTea7 2.0) (7~b147-2.0-0ubuntu0.11.10.1)
OpenJDK 64-Bit Server VM (build 21.0-b17, mixed mode)
Jorge Castro
  • 73,717
Marco FX
  • 140

4 Answers4

5

Install icedtea6-plugin

sudo apt-get install icedtea6-plugin

For more help

enter image description here

enter image description here

its 6 with java 7

One Zero
  • 27,761
5

sudo apt-get install icedtea-web is the correct command.

Bruno Pereira
  • 74,715
3

Just press Ctrl+Alt+T on your keyboard to open Terminal. When it opens, run the command(s) below:

sudo apt-get install icedtea-7-plugin
Mitch
  • 109,787
DJF
  • 41
0

Till the OpenJDK-7 IcedTea plugin gets released, you can use the following workaround:

http://r-interface.blogspot.in/2012/05/java-openjdk-install-errors-in-ubuntu.html

Manav
  • 111