Terry Harding writes:
> Can anyone gives me any hints or clues why i might be getting the
> error message described below.
>
> I would like to use the JDK tonight.
>
> Thanks in advance...
>
> Terry Harding wrote:
> >
> > All,
> >
> > I downloaded and installed the JDK1.1.6 v2 for Intel( glibc ). The
> > installation appeared
> > to go with no hitches. The jdk was installed into /usr/local/jdk1.1.6.
> >
> > When i type javac *.java from the jdk1.1.6 main directory i receive
> >
> > /usr/local/jdk1.1.6/bin/../bin/i586/green_threads/javac:
> > /usr/local/jdk1.1.6/bin/..i586/green_threads/java: No such file or
> > directory
> >
> > When looking in above directories, the files are there.
> > I also ran the export PATH procedure to add the jdk1.1.6/bin directory
> > to my path.
> >
> > I am extremely new to linux, and i know the unix guru's are probably
> > shaking their heads
> > right now.
This error often comes about when you've gotten glibc for a non-glibc system.
What led you to believe that you needed glibc JDK? The no such file or
directory often comes from the Linux dynamic linker (ld.so), trying to find
/lib/libc.so.6, and on systems which aren't glibc (aka libc6), it can't fnd it
yielding the same message that you're seeing.
Steve