What's wrong with my configuration?
Thanks for help...
"
./per_install.bin
Preparing to install...
Extracting the JRE from the installer archive...
Unpacking the JRE...
Extracting the installation resources from the installer archive...
Configuring the installer for this system's environment...
Launching installer...
Invocation of this Java Application has caused an InvocationTargetException.
This application will now exit. (LAX)
Stack Trace:
java.lang.NoClassDefFoundError
at java.lang.Class.forName0(Native Method)
at java.lang.Class.forName(Class.java:140)
at
java.awt.GraphicsEnvironment.getLocalGraphicsEnvironment(GraphicsEnvironment.java:62)
at java.awt.Window.init(Window.java:223)
at java.awt.Window.<init>(Window.java:267)
at java.awt.Frame.<init>(Frame.java:398)
at java.awt.Frame.<init>(Frame.java:363)
at com.zerog.ia.installer.Main.c(Unknown Source)
at com.zerog.ia.installer.Main.main(Unknown Source)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
at
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:324)
at com.zerog.lax.LAX.launch(Unknown Source)
at com.zerog.lax.LAX.main(Unknown Source)
GUI-
"
On Tue, 04 Mar 2003 19:14:30 +0100, dae wrote:
> I try to install Jbuilder 8 personal edition but when I run per_install.bin,
> i've got an exception thrown...
> What's wrong with my configuration?
which version of debian (woody, sid) do U use?
do U have installed jdk? if yes, runs any swing application, or do U have
some errors?
bye
marcin
small description "how to install jb on debian", if jb installation breaks
with:
This application will now exit. (LAX)
Stack Trace:
java.lang.NoClassDefFoundError
it's happen, because jb uses the jdk from sun's jdk and this
needs old glibc. fist check, which glibc is installed:
debuger:~# ls -la /usr/lib/libstdc++-libc6.1-1.so.2
ls: /usr/lib/libstdc++-libc6.1-1.so.2: No such file or directory
so you can install the old lib (1) or create symbolic link to new (2):
(1) apt-get install libstdc++2.9-glibc2.1
(2)
debuger:~$ la -la /usr/lib/libstdc++-*
... 256240 Feb 19 2000 /usr/lib/libstdc++-2-libc6.1-1-2.9.0.so
... 288444 Feb 27 01:18 /usr/lib/libstdc++-3-libc6.2-2-2.10.0.so
make symbolic link:
debuger:~# ln -s /usr/lib/libstdc++-libc6.1-1.so.2 /usr/lib/libstdc++-2-libc6.1-1-2.9.0.so
check it:
debuger:~# ls -la /usr/lib/libstdc++-libc6.1-1.so.2
... 30 Feb 9 17:45 /usr/lib/libstdc++-libc6.1-1.so.2 -> libstdc++-2-libc6.1-1-2.9.0.so
now is java runnable :) for test, install sun jdk (1.3.x or 1.4.x) and
start any swing application. if the application is running, you can try
to install jb.
good luck
marcin
ps. about installing sun's jdk:
topic: "Best way to install JDK 1.4 on woody?"
link: http://lists.debian.org/debian-java/2002/debian-java-200205/msg00144.html
"marcin brzoza" <mar...@yahoo.de> a écrit dans le message de
news:pan.2003.03.13....@yahoo.de...
On Tue, 29 Apr 2003 20:23:24 +0200, virginie wrote:
> I've the same problem (same error) but all over swing are working and i've
> done de ln -s trick
hmm .. try with other lib:
/usr/lib/libstdc++-libc6.1-1.so.2 ->/usr/lib/libstdc++-3-libc6.2-2-2.10.0.so
or with the old libs (apt-get install libstdc++2.9-glibc2.1)
good luck
marcin
ps. sorry, my reader was down (wronglibs ;))