On Jul 23, 2009, at 11:14 PM, Ralph Castain wrote:
3. get a multi-node allocation and run "pbsdsh echo $LD_LIBRARY_PATH" and see what libs you are defaulting to on the other nodes.
Be careful with this one; you want to ensure that your local shell doesn't expand $LD_LIBRARY_PATH and simply display the same value on all nodes. It might be easiest to write a 2 line script and run that:
$ cat myscript #!/bin/sh echo LD_LIB_PATH on `hostname` is: $LD_LIBRARY_PATH $ chmod +x myscript $ pdsh myscript -- Jeff Squyres jsquy...@cisco.com