Hello, The classpath by execute nodes on Linux behave differently than Windows. In our cluster with windows machines we used absolue or relative path to jar-files and this works fine. But this doesn't work with Linux execute machines. The path to the jar is replaced on Windows with the execute directory. On Linux the original path is used. Is the a way to use relative path? I wrote a job that displays the classpath. The line in the submit file is: jar_files = start.jar, abc/run.jar The two files are transfered to the execute node. Displayed classpath on Windows-machine (this works fine): C:\condor\bin;C:\condor\bin/scimark2lib.jar;.;C:\condor\execute\dir_2804\start.jar;C:\condor\execute\dir_2804\run.jar Displayed classpath on Linux-machine (run.jar ist not found because it is transfered to the execute directory): /usr/lib/condor:/usr/lib/condor/scimark2lib.jar:.:start.jar:abc/run.jar How can I use path to jar files? Any Ideas? Thank you very much Cheers, Werner |