JDB not working on Red Hat 9 Linux

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


Date: Sat, 29 Nov 2003 13:46:10 +0000

Can't seem to get the JDB from the J2SE SDK 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 <======== JDB hangs here

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

J.Neuhoff



Relevant Pages

  • jdb not working on red hat 9 linux
    ... Can't seem to get the JDB from the j2sdk 1.4.2_02 to work on Red Hat Linux ... JDB always hangs after entering the "run" command. ... $ java -classpath ./ helloworld ...
    (comp.lang.java.softwaretools)
  • Re: JDB not working on Red Hat 9 Linux
    ... Initializing jdb ... ... I have Debian Linux on another partition, and mounted to the Red Hat 9 ... This makes me think that there is something in Red Hat ...
    (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)