Migration from ESG HPC: Difference between revisions
Jump to navigation
Jump to search
(Created page with " == Folders == home folder (200GB limit): /home/WUR/<user>/ lustre backup folder: /lustre/backup/WUR/ESG/<user>/ lustre no-backup folder: /lustre/no-backup/WUR/ESG/<user...") |
No edit summary |
||
(4 intermediate revisions by 2 users not shown) | |||
Line 6: | Line 6: | ||
/lustre/backup/WUR/ESG/<user>/ | /lustre/backup/WUR/ESG/<user>/ | ||
lustre no-backup folder: | lustre no-backup folder: | ||
/lustre/ | /lustre/nobackup/WUR/ESG/<user>/ | ||
/DATA folder | |||
/lustre/backup/WUR/ESG/data/ | |||
== Example of a job script == | == Example of a job script == | ||
#!/bin/bash | #!/bin/bash | ||
#SBATCH -- | #SBATCH --comment=99999999 | ||
#SBATCH --time=1200 | #SBATCH --time=1200 | ||
#SBATCH --mem=2048 | #SBATCH --mem=2048 | ||
Line 21: | Line 20: | ||
#SBATCH --job-name="test slurm" | #SBATCH --job-name="test slurm" | ||
#SBATCH --nodes=5 | #SBATCH --nodes=5 | ||
#SBATCH --mail-type=ALL | #SBATCH --mail-type=ALL | ||
#SBATCH --mail-user=wietse.franssen@wur.nl | #SBATCH --mail-user=wietse.franssen@wur.nl | ||
./executable |
Latest revision as of 16:01, 15 July 2019
Folders
home folder (200GB limit):
/home/WUR/<user>/
lustre backup folder:
/lustre/backup/WUR/ESG/<user>/
lustre no-backup folder:
/lustre/nobackup/WUR/ESG/<user>/
/DATA folder
/lustre/backup/WUR/ESG/data/
Example of a job script
#!/bin/bash #SBATCH --comment=99999999 #SBATCH --time=1200 #SBATCH --mem=2048 #SBATCH --ntasks=1 #SBATCH --output=output_%j.txt #SBATCH --error=error_output_%j.txt #SBATCH --job-name="test slurm" #SBATCH --nodes=5 #SBATCH --mail-type=ALL #SBATCH --mail-user=wietse.franssen@wur.nl ./executable