Page 1 of 2

Latest Java jre1.6.0_11

Posted: Wed 03 Dec 2008, 11:59
by ttuuxxx
Hi here's the latest Java Just released :)


@@@Updated@@@

fixed broken links
http://www.puppylinux.asia/tpp/ttuuxxx/ ... 6.0_11.pet
ttuuxxx

Re: Latest Java jre1.6.0_11

Posted: Thu 04 Dec 2008, 11:20
by KC1DI
ttuuxxx wrote:Hi here's the latest Java Just released :)

Sorry about the temp Link :?

http://sharesend.com/2ys9a

ttuuxxx
Thanks :)

Re: Latest Java jre1.6.0_11

Posted: Mon 08 Dec 2008, 22:01
by kuapao
ttuuxxx wrote:Hi here's the latest Java Just released :)

Sorry about the temp Link :?

http://sharesend.com/2ys9a

ttuuxxx
Hi ttuuxxx,

I just tried the link above, but I get no route to host...

Code: Select all

# wget http://sharesend.com/2ys9a
--15:56:44--  http://sharesend.com/2ys9a
           => `2ys9a'
Resolving sharesend.com... 216.151.157.68
Connecting to sharesend.com|216.151.157.68|:80... failed: No route to host.
I can connect to and download from other websites just fine.

Posted: Mon 08 Dec 2008, 23:33
by MU

Posted: Tue 09 Dec 2008, 00:22
by Béèm
Mark,
Can your mirror be connected too with petch?
If not that would be a great facility.
I know Tomb left, but wasn't somebody else taking over?
Comment ça va?
Bernard

Posted: Tue 09 Dec 2008, 00:45
by Caneri
Hi Beem,

The package lists will need to be available for the new servers..then petch should work...it may take more time to get it correct.

Eric

Posted: Tue 09 Dec 2008, 00:50
by MU
Salut Bernard,
as far as I understand
http://www.murga-linux.com/puppy/viewtopic.php?t=33436
dotpups.de should be available in petch, just not the Puppy 4 packages, as they have no dotpups.txt yet.
Ok, I can generate one this week.

I'm fine so far.
My foot is ok, it was not torn, just overbent. I can walk as usual again now.
This month or january I will have a meeting where I get to know if I will get the Java training in february.
This would be a two month course paid by the state.
Currently there are a lot of free jobs, but around 80% require knowledge in Java or SAP.
A few jobs require knowledge in C++/C#.
I was offered one, well payed, but it requires knowledge in Visual C++ (Windows), that is different to my knowledge in C/Gtk.

So at moment I analyze job offers, update my CV, and soon will have to buy a faster computer.
My Pentium 700 is too slow for Eclipse, the Java IDE.
I don't expect, that a lot will happen this year so short before christmas, so I use the time to help answering some forum messages, and will have a close look on what happens concerning Puppy 4.2.

But please do not expect too much from me at moment.
The winter makes me tired, and I also use a lot of time just to relax, take a walk and so on.
I had no "real" holiday for 2 years (like visiting another country), and need a break from computing.
So I just look at smaller tasks at moment.
Mark

Posted: Sat 13 Dec 2008, 04:15
by Fishy
Has something changed in Puppy 4.1.2? I partially screwed-up my system so started fresh with 4.1.2 full install. Now Opera 9.62 will not install or work properly but a 9.51 pet works. I installed the latest java pet but bittyrant will not function either :?

Java installed in /usr/lib automatically, is that the right place? This didn't happen in 4.1.1 so what gives? Puppy has usually been a most obedient buddy and only gets rabid when I try something stupid, but in this case every thing is vanilla.

I can live with Opera 9.50 but miss bittyrant! I know others have had problems with Opera 9.62 installing to an unusual location, is this Java issue related?

Cheers :)

Posted: Sat 13 Dec 2008, 04:55
by ttuuxxx
Fishy wrote:Has something changed in Puppy 4.1.2? I partially screwed-up my system so started fresh with 4.1.2 full install. Now Opera 9.62 will not install or work properly but a 9.51 pet works. I installed the latest java pet but bittyrant will not function either :?

Java installed in /usr/lib automatically, is that the right place? This didn't happen in 4.1.1 so what gives? Puppy has usually been a most obedient buddy and only gets rabid when I try something stupid, but in this case every thing is vanilla.

I can live with Opera 9.50 but miss bittyrant! I know others have had problems with Opera 9.62 installing to an unusual location, is this Java issue related?

Cheers :)
I'll look into the java issue, I tried it before packaging, Anyways I'll see whats up.
ttuuxxx

Posted: Sat 13 Dec 2008, 23:47
by vovchik
Dear puppians,

I installed the latest java pet and it works under 3.01, which I still use with pleasure/conviction. If you want recent java apps to look OK, create a file in /usr/lib/javaxxxx/lib/ called swing.properties. It should have the following contents:

Code: Select all

# Swing properties
swing.defaultlaf=com.sun.java.swing.plaf.gtk.GTKLookAndFeel
You then get java using your GTK theme. I actually go overboard, forcing all jar files to be run via my script, called myjava, which contains the following:

Code: Select all

#!/bin/sh
java -Dswing.systemlaf=com.sun.java.swing.plaf.gtk.GTKLookAndFeel -Dawt.useSystemAAFontSettings="lcd" -Dpropertiesfile=swing.properties -jar "$@"
If anybody on the forum has ideas regarding better rendering of fonts, please let us know, since I am not entirely satisfied with java's font rendering.

With kind regards,
vovchik

Posted: Wed 17 Dec 2008, 12:10
by ttuuxxx
Hi guys, I just uploaded a fixed version, I found 1 broken link that stopped some Java apps from working.
ttuuxxx

Posted: Mon 22 Dec 2008, 13:12
by vovchik
Dear Puppians,

First of all, a round of thanks to ttuuxxx for the java. Second of all, if you have downloaded it, then you need something to run. I have come across a very reasonable and tiny java-based file manager called jfilerunner. It is attached. In functionality, it is similar to Midnight Commander and MuCommander, but is only 168k or so, and Michael Corral has done a very good job at coding a nice and useful application.

In puppy 3.01 and Slack I have to precede the invokation with an enviromental var, which I do in a bash script:

Code: Select all

#!/bin/sh
export LC_ALL='C'
myjava /mnt/hdb6/Util/jfilerunner/jfilerunner.jar
# end
and myjava is also a bash script in /root/my-applications/bin:

Code: Select all

#!/bin/sh
java -Dswing.systemlaf=com.sun.java.swing.plaf.gtk.GTKLookAndFeel
-Dawt.useSystemAAFontSettings="lcd" -Dpropertiesfile=swing.properties
-jar "$@"
# end
I do this so that java recognizes my java Look and Feel settings (see my preceding post).

With kind regards,
vovchik

Posted: Tue 23 Dec 2008, 03:58
by ichido
Forgive me if I've missed something, but how do I get JAVA, and how do I install it in Puppy 4.10?

Posted: Fri 26 Dec 2008, 16:23
by ttuuxxx
Hi ya sure just download this package
http://www.puppylinux.asia/tpp/ttuuxxx/ ... 6.0_11.pet
and click on it, it will install automatically with the package manager and thats it. nothing else to do :)
ttuuxxx

Posted: Thu 15 Jan 2009, 18:21
by gymnart
Sorry about cross posting this here but I have been wondering:

/usr/local/bin/java points to ../../../root/jre1.6.0_11/bin/java but it is empty and the folder info says that it is empty or does not exist. (the icon is yellow with a !) Which file is supposed to be in there?

I have the plugin linked in /.mozilla/plugins and it points to /usr/lib/jre/plugin/i386/ns7/libjavaplugin_oji.so but when I view my plugins in SeaMonkey (about: plugins) java does not show up so I am not sure if SeaMonkey sees it. I guess it must be working because Gmail works nicely now. Anyway, I wanted to run a Java app from the desktop (SweetHome3D: http://www.sweethome3d.eu/ )and I wanted to try the webstart too.

java was installed using the pet package manager.

Posted: Tue 20 Jan 2009, 03:47
by GeexBoxer
Thanks ttuuxxx, I was looking for this.

Link broken

Posted: Sun 01 Feb 2009, 17:29
by Hayig2000
link is broken, worked :)
How much is its size?

Re: Link broken

Posted: Sun 01 Feb 2009, 21:35
by ttuuxxx
Hayig2000 wrote:link is broken, worked :)
How much is its size?
its a 35MB pet and the link works :)
just checked
ttuuxxx

Posted: Tue 10 Feb 2009, 04:28
by edoc
ttuuxxx wrote:Hi ya sure just download this package
http://www.puppylinux.asia/tpp/ttuuxxx/ ... 6.0_11.pet
and click on it, it will install automatically with the package manager and thats it. nothing else to do :)
ttuuxxx
A month and a half later ... is this still the preferred jre or is there a newer one, please?

I am running 4.12-Normal Frugal with Seamonkey.

Posted: Tue 10 Feb 2009, 19:42
by ttuuxxx
edoc wrote:
ttuuxxx wrote:Hi ya sure just download this package
http://www.puppylinux.asia/tpp/ttuuxxx/ ... 6.0_11.pet
and click on it, it will install automatically with the package manager and thats it. nothing else to do :)
ttuuxxx
A month and a half later ... is this still the preferred jre or is there a newer one, please?

I am running 4.12-Normal Frugal with Seamonkey.
Well there's a jre1.6.0_12 at the website but, it improvements over jre1.6.0_11 are nothing related to the current puppy model, its improvements are for 64bit pc's and windows, So to answer your question, yes this version is good enough for now, it takes a few hours to package Java and get the links working and upload it so. Not really worth it for _12, I'll wait for the next release.
ttuuxxx