Page 1 of 1

Why isn't Java, Google Chrome, and Flash on the install dvd?

PostPosted: Jul 8th, '11, 01:25
by drthrd
Was wondering why them 3 are not on the install dvd.

Re: Why isn't Java, Google Chrome, and Flash on the install

PostPosted: Jul 8th, '11, 02:58
by wobo
They are non-free software.

Re: Why isn't Java, Google Chrome, and Flash on the install

PostPosted: Jul 8th, '11, 08:34
by ahmad
java-1.6.0-openjdk is on the DVD.

java-1.6.0-sun and flash are non-free, as wobo said, so no place for them on the DVD.

chromium-browser isn't on the DVD as it's not installed by default, the DVD can't have all the packages on the repos. Feel free to file a bug report to request including it on the DVD for Mageia 2.

Re: Why isn't Java, Google Chrome, and Flash on the install

PostPosted: Jul 8th, '11, 11:30
by wobo
ahmad wrote:java-1.6.0-openjdk is on the DVD.

Oops! Forgot about this one! :oops:

Re: Why isn't Java, Google Chrome, and Flash on the install

PostPosted: Jul 13th, '11, 18:36
by Max
wobo wrote:
ahmad wrote:java-1.6.0-openjdk is on the DVD.

Oops! Forgot about this one! :oops:

Yes, but... I've run into several problems with openjdk.
Programs written in the sun environment will compile smoothly, but in the openjdk will sometimes throw errors. I noticed this in particular with the Scanner object in java-1.5.0-openjdk. Perhaps they fixed it in 6, but I will not be fooled again.

Re: Why isn't Java, Google Chrome, and Flash on the install

PostPosted: Jul 13th, '11, 21:53
by wobo
Yes, openjdk is not 100% compatible to java-sun, so people who need it must de-install openjdk and install java-xx-sun from the non-free repo.

Re: Why isn't Java, Google Chrome, and Flash on the install

PostPosted: Jul 14th, '11, 09:22
by doktor5000
Not exactly, it's enough to install jre-1.6.0-sun in parallel, and afterwards run update-alternatives --config java and switch to jre-1.6.0-sun.

Re: Why isn't Java, Google Chrome, and Flash on the install

PostPosted: Jul 10th, '12, 11:11
by gouessej
Max wrote:
wobo wrote:
ahmad wrote:java-1.6.0-openjdk is on the DVD.

Oops! Forgot about this one! :oops:

Yes, but... I've run into several problems with openjdk.
Programs written in the sun environment will compile smoothly, but in the openjdk will sometimes throw errors. I noticed this in particular with the Scanner object in java-1.5.0-openjdk. Perhaps they fixed it in 6, but I will not be fooled again.

As far as I know, it has been fixed. OpenJDK and Icedtea-web work fine most of the time, there are a few problems including no support of applets that rely on JNLP (work in progress, might be fixed in some months), worse font handling, some limitations in the high level methods of JavaSound (use JOAL instead), some missing APIs especially those of javaws.jar and deploy.jar. If you find any bug, please report it. Java applications should never rely on private APIs subject of removal, they will probably not work in a near future even with further versions of Oracle JVM.

Flash is available by default, it's Gnash instead of Adobe Flash. Don't forget to install all codecs and it will work fine, I use it to play videos on Youtube.

Re: Why isn't Java, Google Chrome, and Flash on the install

PostPosted: Aug 15th, '12, 11:36
by Max
gouessej wrote:
Max wrote:
wobo wrote:
ahmad wrote:java-1.6.0-openjdk is on the DVD.

Oops! Forgot about this one! :oops:

Yes, but... I've run into several problems with openjdk.
Programs written in the sun environment will compile smoothly, but in the openjdk will sometimes throw errors. I noticed this in particular with the Scanner object in java-1.5.0-openjdk. Perhaps they fixed it in 6, but I will not be fooled again.

As far as I know, it has been fixed. OpenJDK and Icedtea-web work fine most of the time,

Actually, OpenJDK 7 is now the official Java 7 SE reference implementation.
So I guess that means it works ;P

Re: Why isn't Java, Google Chrome, and Flash on the install

PostPosted: Aug 15th, '12, 11:55
by gouessej
Yes, it works but some people still have prejudices about OpenJDK...

Re: Why isn't Java, Google Chrome, and Flash on the install

PostPosted: Feb 4th, '13, 03:02
by zooplah
Max wrote:Programs written in the sun environment will compile smoothly, but in the openjdk will sometimes throw errors.

I've never had a problem with OpenJDK. There are several things that won't work with GCJ, but OpenJDK seems solid.

Re: Why isn't Java, Google Chrome, and Flash on the install

PostPosted: Feb 4th, '13, 10:52
by gouessej
zooplah wrote:
Max wrote:Programs written in the sun environment will compile smoothly, but in the openjdk will sometimes throw errors.

I've never had a problem with OpenJDK. There are several things that won't work with GCJ, but OpenJDK seems solid.

+1

You may have compile errors when using implementation classes (sun.*) in a very few cases but relying on them is a bad practice anyway.