jdb not working on red hat 9 linux

From: J.Neuhoff (NOSPAM_at_webcom.com)
Date: 11/28/03

  • Next message: LDV: "Re: Do you still choose java????"
    Date: Fri, 28 Nov 2003 21:44:07 +0000
    
    

    Can't seem to get the JDB from the j2sdk 1.4.2_02 to work on Red Hat Linux
    9. JDB always hangs after entering the "run" command. Here is what I get:

    $ cat helloworld.java
    public class helloworld
    {

       public static void main( String[] args ) {
           System.out.println( "hello world" );
       }

    }
    $ javac -classpath ./ -g helloworld.java
    $ java -classpath ./ helloworld
    hello world
    $ jdb -classpath ./ helloworld
    Initializing jdb ...
    > run
    run helloworld

    Using exactly the same J2SDK 1.4.2_02 works fine on a Debian 3.x
    distribution. How can I get JDB to work on Red Hat Linux 9 ?

    J.Neuhoff


  • Next message: LDV: "Re: Do you still choose java????"

    Relevant Pages

    • JDB not working on Red Hat 9 Linux
      ... Can't seem to get the JDB from the J2SE SDK 1.4.2_02 to work on Red Hat ... JDB always hangs after entering the "run" command. ... $ java -classpath ./ helloworld ...
      (linux.redhat)
    • Re: Debugger
      ... First I found that jdb was not on my path, ... the IDE. ... When I issued this command, the program just ran without stopping. ... >> I have a problem getting the Java debugger to work under Windows XP. ...
      (comp.lang.java.softwaretools)
    • Command line java debugger (other than jdb)
      ... Are there any command line debuggers for Java? ... Aside from JDB, I mean. ...
      (comp.lang.java.programmer)