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
The new Juno cluster is now available to the test users only. Please, create a request if you want to participate. It is currently composed of 216 CPUs. The login node name is juno. It's a CentOS 7.3 host. The latest CentOS 7.3 Linux operating system is on nodes x01-x10 and the Centos 6.9 Linux operating system is on node u14 . All cluster nodes have access to Isilon solisi file system. The CentOS 7.3 nodes have access to the GPFS storage named lunajuno.
Queues
The Juno cluster uses LSF (Load Sharing Facility) 10.1 SP6 from IBM to schedule jobs. The default LSF queue, ‘general’, includes all Juno compute nodes.
...
Queue name: default
Operating System: CentOS 67.93
Number of slots (-n): 1
Waltime (maximum running time): 6 hours
...
The default operating system for Juno jobs is CentOS 67.93. Users can request that jobs will run on one specific type of operating system or any operating system.
To submit the job to default (CentOS 67.93) operating system:
Code Block | ||
---|---|---|
| ||
bsub -n 1 -W 1:00 -R "rusage[mem=2]" |
To submit the job to CentOS 76.3 9 operating system:
Code Block | ||
---|---|---|
| ||
bsub -n 1 -app anyOS -W 1:00 -R "rusage[mem=2]" -R "select[type==CentOS7CentOS6]" |
To submit the job to any operating system:
...