17

I've got Java working on Firefox in Ubuntu 11.04 (Natty Narwhal), but using the same page on Chromium tells me Java cannot be found.

How can I enable Java on Chromium in my Ubuntu 11.04?

Peter Mortensen
  • 933
  • 2
  • 11
  • 17
mrobertran
  • 185
  • 1
  • 1
  • 6

4 Answers4

14

The first thing to do is to install Java:

$ sudo apt-get update
$ sudo apt-get install openjdk-7-jre icedtea-7-plugin

Restart chromium-browser and then use about:plugins to check if it's enabled.

Dennis
  • 1,829
  • 1
  • 12
  • 15
Natim
  • 883
  • 11
  • 23
12
  • Go to : about:plugins
  • Under location: you should see enable (if it is disabled).

Java Plugin

This happened with me at first.

Also, see: Do I have Java? If it takes too long , it means that there isn't java installed or something went wrong during installation.

Binarylife
  • 16,322
  • 10
  • 56
  • 65
4

According to this

You can't. You would have to recompile Chromium and edit the line that disallows NPAPI.

isomorphismes
  • 1,766
  • 2
  • 19
  • 30
1

You get the IcedTea-web Java browser plugin by installing the icedtea-plugin package.

You can quickly do this from the command line running:

sudo apt-get update && sudo apt-get install icedtea-plugin
dragonloverlord
  • 277
  • 1
  • 4
  • 18
xranby
  • 980
  • 8
  • 7