1

I've recently built a computer lab running various forms of Ubuntu. I'm testing out Edubuntu to see if it is a better fit for our school, but I'm running up against a problem I can't resolve.

One of the programs we use is Carnegie Learning Online, a Java program that I've managed to get working on both Ubuntu 10.04 and 12.04. After updating Java (all distros), when you access the website a .tt applet file is downloaded. With Java installed you can select the IcedTea plugin to open it.

On 10.04/12.04, this then opens a new window, Java runs a setup of some sort, and then a new window with the Carnegie program opens. On Edubuntu however, once you've told IcedTea to run it....nothing happens. No errors, just nothing. I've tried this with an older update of Java as well as the newest. Any ideas?

Jorge Castro
  • 73,717
user95864
  • 41
  • 5

1 Answers1

1

First check that there are no hidden error screens. Sometimes child processes have trouble and the error or confirmation box does not get focus and it can only be found by minimising applications in the foreground. (in one case we came across here the confirmation box was on a different workspace - see the question on running rapidminer).

An alternative to iced tea might be to install the Oracle java JDK. Webupd8.org have made a ppa for it you can use:

sudo add-apt-repository ppa:webupd8team/java
sudo apt-get update
sudo apt-get install oracle-java7-installer

You might like to look at the relevant Webupd8 page.

If you still have a problem it might be necessary to remove the iced tea plugin.

Edit: I'm assuming that when you say "updated java" that you mean openJDK. Oracle changed their licensing so java can no longer ship with Ubuntu, or even be in any repository; hence the need for the webupd8 PPA.

fabricator4
  • 8,471
  • 1
  • 37
  • 39