Hi, Sorry for the intrusion... I am trying to learn a little java. The following program compiles and runs fine on our Intel linux boxen running the latest java from blackdown.org. I recently downloaded (kaffe-.91& support files) and did a build for the june release linux pmac on a Mac 7600. The program below also compiles using the latest "kaffe", but alas does not run properly. It appears that some methods are missing from the Class library. Is this a known problem with kaffe? --Jerry LeVan levan@eagle.eku.edu /* * Process manipulation...unix * Try to capture the stdout of a unix command * sample invocation: java Cmd "ps -aux" * Jerry LeVan * July 4, 1997 */ import java.io.* ; public class Cmd { public static void main ( String [] args) { String next; Runtime cmd = Runtime.getRuntime(); try { Process up = cmd.exec(args[0]); // Just because I like readLine... BufferedReader out = new BufferedReader( new InputStreamReader( up.getInputStream()) ); while (( next = out.readLine()) != null) { System.out.println(next); } } catch(Exception ex) { System.out.println("Command Failed: "+ ex); } } } [levan@macjerry exec]$ kaffe Cmd ps Failed to locate native function: java/lang/UNIXProcess.forkAndExec([Ljava/lang/String;[Ljava/lang/String;)I java.lang.UnsatisfiedLinkError at java/lang/UNIXProcess.(line unknown, pc 0x39) at java/lang/Runtime.exec(line unknown, pc 0x52) at java/lang/Runtime.exec(line unknown, pc 0x3) at Cmd.main(16) [levan@macjerry exec]$ [levan@macjerry exec]$ kaffe -version Kaffe Virtual Machine Copyright (c) 1997 T. J. Wilkinson & Associates, London, UK. Engine: Interpreter Version: 0.91 Java Version: 1.1.2