> Do you know if Redhat has a cluster software for 6.1 where I can send one 
> job to multiple PCs?

You want each machine to do the same job and then wait for them all to 
finish ?

If so try

#!/bin/sh

for i in $(cat hostlist))
do
        echo "Beginning on host "$i
        rsh $i $* &
done
echo "Jobs dispatched"
wait
echo "All tasks completed"


With a Unix system you have the tools to do this sort of thing without
tons of extra packages.

Alan

-- 
To unsubscribe:
mail -s unsubscribe [EMAIL PROTECTED] < /dev/null

Reply via email to