Ted Neward wrote:
>
> I've got a problem running JDK 1.2v1 on my RedHat 5.2 install, but only AWT
> stuff. I know this has crossed this forum before, but I'm kinda asking for
> somebody to hold my hand on this and walk me through what I need to do to
> make this work.
With a preamble like that, I'd have expected a harder problem :-).
> I'm trying to run the Notepad sample from the demos/jfc directory. Error I
> get back is:
>
> uncaught exception: java.lang.UnsatisfiedLinkError:
> /usr/jdk1.2/jre/lib/i386/lib
> fontmanager.so: libstdc++-libc6.0-1.so.2: cannot open shared object file:
> No such file or directory
This is one of those platform-specific things that will be resolved for
the real release. You've got a shared lib somewhere that the JVM needs;
it's called something like /usr/lib/libstdc++.so.2.8.0 (or something
similar, depending on what version you have installed). You can, until
the final JVM comes out, create a symbolic link that should solve it for
you:
ln -s libstdc++.so.2.8.0 /usr/lib/libstdc++-libc6.0-1.so.2
^^^^^^^^^^^^^^^^^^
(substitute the real name of the library you have on your system).
Nathan
----------------------------------------------------------------------
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]