How to show java plugin console

In windows, when I open a web page containing applet, icon of java plugin console is displayed in systray. But in Ubuntu, I don't find any way to show java plugin console. How can I open java plugin console with FireFox and Chromium in Ubuntu?

4 Answers

It's because the Java Console is hidden by default.

To change this:

  1. First start the Java Control Panel.

    From the command line run: ControlPanel (if not in PATH, you may have to run something like /usr/lib/jvm/jre1.7.0_51/bin/ControlPanel )

    Or, choose from the Dash like the screenshot below

    Java Control Panel

  2. In the Java Control Panel go to the Advanced Tab, expand Java Console and choose Show Console. Screenshot below:

    Set the Java Console On

  3. Now the console will pop up whenever you execute ANY Java Applet.

Fix INFO from this bug.

5

If you don't have the dash interface (for example if you use Kubuntu, Lubuntu, etc), an alternative method is:

1) Open Terminal and type:

update-alternatives --display java

2) Change Directory to the last directory shown, for example:

cd /usr/lib/jvm/java-7-oracle/jre/bin/

3) Type:

./ControlPanel
1

Now Icedtea has its own control panel, type :

% /usr/lib/jvm/[YOUR JAVA VERSION]/jre/bin/itweb-settings

You can find your java version by typing ls /usr/lib/jvm/ and the folder should have the format of java-[VERSION]-openjdk-[ARCHITECTURE].

  • Environment:
    • Ubuntu 18.04.5 LTS
    • IcedTea Web 1.8
  • Steps to enable the IcedTea console:
    1. Click on the "show applications" icon (bottom left of your screen, by default. The bottom-most item in the launch bar)
    2. Search for "icedTea" (don't worry about lower/upper case)
    3. Click on the IcedTea Control Web Control Panel item, probably the only one found (among other things, it looks like a penguin with a giant red nose).
    4. On the selection list (displayed on the left side), select the option debugging by clicking on it.
    5. At the debugging settings panel, by the bottom left, there is a drop-down whose label says "Java Console" whose option "Show on startup" is the one you want to select.
    6. Click "Apply" and "OK". You may now close the IcedTea Control Panel.

The expected behavior is that, when you launch an applet, the console will also keep open, in a separate window, of course, logging stuff with a small delay.

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