Cluster 7

From DISI
Jump to navigation Jump to search

Introduction

A cluster built on Rocky 9 linux distribution which is under the RHEL umbrella.

How to Request for Access

Contact a system administrator.

How to Login

  1. Remote
    ssh <user>@epsilon.compbio.ucsf.edu
  2. On-premise
    ssh <user>@login02.compbio.ucsf.edu

SLURM Nodes

CPU

GPU

gpu01


Global Modules

  • To check the list of available modules
    // Long version
    module available 
    
    /* OR */
    
    // Short version
    ml av
  • To load a module(s)
    // Single module, Long version
    module load dock 
    
    /* OR */
    
    // Single module, Short version
    ml dock 
    
    ==================================
    
    // Multi-module, Long version
    module load dock python schrodinger
    
    /* OR */
    
    // Multi-module, Short version
    ml dock python schrodinger