First of all, Im very new to clusters and PBS systems. I was told to prepare a simple script (which I did):
#PBS -S /bin/bash
#PBS -o host_out
#PBS -e host_err
#PBS -q batch
hostname
date
exit 0
Then, I made it executable and I submitted with the command:
qsub job.sh
and got its ID (so it seems that the job was properly submitted, right?) But I can't see any answer, I mean, even the files host_out
and host_err
are not created. What might be wrong? What else do I need to do to submit a job?