HP XC System Software Administration Guide Version 3.2

A.9 Sample Running Jobs
Example A-1 Running Jobs as a User on an External Node Launching to a Linux Itanium Resource
$ bsub -I -n1 -R type=LINUX86 hostname
Job <411> is submitted to default queue <normal>.
<<Waiting for dispatch ...>>
<<Starting on plain>>
plain
Example A-2 Running Jobs as a User on an External Node Launching to an HP XC Resource
$ bsub -I -n1 -R type=SLINUX64 hostname
Job <412> is submitted to default queue <normal>.
<<Waiting for dispatch ...>>
<<Starting on xclsf>>
xc127
Example A-3 Running Jobs as a User on an External Node Launching a Parallel Job
$ bsub -I -n6 -R type=SLINUX64 srun hostname
Job <413> is submitted to default queue <normal>.
<<Waiting for dispatch ...>>
<<Starting on xclsf>>
/home/test/.lsbatch/1113947197.413: line 8: srun: command not found
$ bsub -I -n6 -R type=SLINUX64 /opt/hptc/bin/srun hostname
Job <414> is submitted to default queue <normal>.
<<Waiting for dispatch ...>>
<<Starting on xclsf>>
xc3
xc3
xc2
xc2
xc1
xc1
Note that srun was not found because the user's $PATH did not include /opt/hptc/bin, which
is specific to the HP XC system. There are several standard ways to address this if necessary (add
/opt/hptc/bin to the default $PATH on the node that does not belong to the HP XC system;
or create a soft link to the srun command from /usr/bin on all the nodes in the HP XC system).
Example A-4 Running Jobs as a User on the HP XC Node Launching to a Linux Itanium Resource
$ bsub -I -n1 -R type=LINUX86 hostname
Job <415> is submitted to default queue <normal>.
<<Waiting for dispatch ...>>
<<Starting on plain>>
plain
Example A-5 Running Jobs as a User on the HP XC Node Launching to an HP XC Resource
$ bsub -I -n6 -R type=SLINUX64 srun hostname
Job <416> is submitted to default queue <normal>.
<<Waiting for dispatch ...>>
<<Starting on xclsf>>
xc3
xc3
xc2
xc2
xc1
xc1
A.9 Sample Running Jobs 301