Am 15.06.2011 um 20:25 schrieb Vadim Gutnik:

>> how are they submitting jobs - they also mount /home on their remote 
>> workstations?
>> 
> 
> Not /home, usually, but yes, the working directories are mounted.

What about using a local `qsub` wrapper, which will make an ssh in the end:

#!/bin/sh
CWD=`pwd -P`
exec ssh login-node "cd $CWD; qsub ${@}"

Depending on your setup it might be necessary to use `pwd -L` instead. With a 
set up ssh-agent it should work flawlessly. Only pitfall is when you use blanks 
in any of the arguments.

-- Reuti
_______________________________________________
users mailing list
[email protected]
https://gridengine.org/mailman/listinfo/users

Reply via email to