greetings and thank you for all the assistance previously
I have edited the compile job script you sent to me last time and I have run it
but it seems nothing compile yet
the script thus
l#!/bin/bash
### Job Name
#PBS -N compile_wrfjob
### Project_code
#PBS -P ERTH0904
###PBS -A ERTH0904 (chpc prefer -P for -A)
#PBS -l walltime=01:00:00
### added -0 and -e from previous example in chpc
#PBS -o /mnt/lustre/users/jakinyoola/WRFCHEMSETUP/compile12.out
#PBS -e /mnt/lustre/users/jakinyoola/WRFCHEMSETUP/compile12.err
#PBS -q normal
### Merge output and error files (next two lines do this)
#PBS -j oe
#PBS -k eod
### Select 2 nodes with 36 CPUs each for a total of 72 MPI processes
#PBS -l select=2:ncpus=36:mpiprocs=36
### Send email on abort, begin and end
#PBS -m abe
### Specify mail recipient
#PBS -M omoakinyoola@gmail.com
cd /mnt/lustre/users/jakinyoola/WRFCHEMSETUP/WRF-4.1.2
### Compile with separate log for errors
./compile em_real > log_comp.txt 2> errors_comp.txt
I have this Bellow when I check with >qstat -u (USERNAME)
what you think I need to do
thank you