General Documentation
- Welcome FAQ
- Secure Shell SSH
- Available Software
- Installing Software
- Guidelines and Policies
- Glossary
- Grant Support
- Sharing Data
- Containers & Singularity
- UserGroup Presentations
- Jupyter Notebook Usage
LSF Primer
Lilac Cluster Guide
Juno Cluster Guide
Cloud Resources
Backup Policy on server/node local drives
File lists
Page History
...
Slides from Sep 27 2018 User Group meeting Juno_UG_092018.pdf
Configuration change list:
November 28, 2018: the default OS type is CentOS07. Please, check "Job Submission"
Differences in LSF Configuration between juno and luna
...
Queue name: general
Operating System: CentOS 67
Number of slots (-n): 1
Maximum Waltime (job runtime): 6 hours
...
By default jobs submitted on juno only run on CentOS 6 7 nodes (with GPFS). Users can specify CentOS 7 6 nodes (with GPFSIsilon only), CentOS 6 7 nodes (Isilon onlywith GPFS), or either type.
To submit a job to CentOS 6 7 nodes use either of these formats:
Code Block | ||
---|---|---|
| ||
bsub -n 1 -W 1:00 -R "rusage[mem=2]" bsub -n 1 -W 1:00 -app anyOS -R "select[type==CentOS6CentOS7]" -R "rusage[mem=2]" |
To submit a job to CentOS 7 6 nodes:
Code Block | ||
---|---|---|
| ||
bsub -n 1 -W 1:00 -app anyOS -R "select[type==CentOS7CentOS6]" -R "rusage[mem=2]" |
To submit a job to any nodes, running either CentOS 6 or 7:
...