Docs

Our online documentation provides an overview and reference for submitting jobs, using storage, and using our various systems. If you need additional help, please refer to our Support Page.

Getting Started

Learn how to connect and use RCC Services

High Performance Computing Cluster

Process compute-intensive workloads

Storage and Data

Transfer data and manage storage

Spear

Interactive and dedicated Linux nodes

Virtual Machines ("SKY")

Dedicated VM hosting for research applications

Data Center Hosting

Floorspace in our data center

  Check out our software, including MATLAB, OpenMPI, Python, and more… (134 packages)

HPC Quickstart

Connect to the HPC using SSH and run jobs:

// Login to the HPC via SSH (how-to)
$ ssh abc12a@hpc-login.rcc.fsu.edu

// Submit jobs using Slurm sbatch (how-to)
[abc12a@hpc-login-vm1 ~]$ sbatch letscountprimes.sh
Submitted batch job 123456

// View job info using squeue (how-to)
[abc12a@hpc-login-vm1 ~]$ squeue -u `whoami`
 JOBID PARTITION     NAME     USER ST       TIME  NODES NODELIST(REASON)
123456  backfill letscoun   abc12a R        0:03      1 hpc-i36-5

// View results using standard Linux tools, or download data (how-to)
[abc12a@hpc-login-vm1 ~]$ cat slurm-123456.out
2 3 5 7 11 13, 17, 19, 23, 29, 31, 37...