I have a Java program that uses AWT which I would like to run on a non-head system, display performance for the program Nothing does except statistics when the program is finished, so it comes out. There is no user interaction on display. The program creates an output file that I use in my build system.
Is there a way to run the Java program without X11 display? Can I force Java to run the program without trying to display anything? I do not have access to the source code (this is just the .jar file), so I can not modify the source.
How can I work it out? The underlying question here is how to run Java applications without X applications;
java-djava.awt.headless = true
this allows those apps Which is also running on headless systems without the ADT X server to run
Comments
Post a Comment