Docs
  • Introduction
  • Command Line Basics
  • Lawrence HPC
    • About Lawrence
    • Login
    • Filesystems
    • Transferring Files
    • Software on Lawrence
    • Submitting Jobs
    • Programming Environment
    • Gaussian Tutorial
    • Lumerical (FDTD) from Lawrence on Windows PC Tutorial
    • Lumerical (FDTD) on Lawrence GUI Tutorial
    • Helpful Hints
    • Jupyter on Lawrence
  • Globus
    • Globus Information
    • Globus Tutorials
    • .
  • Non-Lawrence Guides
    • Downloads
    • Software Installations on Windows
    • .
  • Archived Information
    • .
      • Legacy-Lawrence Migration
      • Ubuntu- from Login page
      • VNC
      • Non-Lawrence Tutorials
      • WARNING: These are the archives, not current information
      • Start Here
      • SSH Log In
      • Home Directory
      • Data Transfer
      • Interactive Session
      • Batch Compute Jobs
      • rclone for Google Drive
      • rclone for MS OneDrive
      • rclone for DropBox
      • Gaussian
      • Modules
      • PAUP
      • X11 Forwarding
      • TigerVNC
      • Logging in to an interactive session - qlogin
      • VNC
Powered by GitBook
On this page
  • Job Management: SGE to Slurm
  • Transferring Data to Lawrence from Legacy
  1. Archived Information
  2. .

Legacy-Lawrence Migration

Previous.NextUbuntu- from Login page

Last updated 6 years ago

This article was created for users transitioning from Legacy to Lawrence during the migration process. Many new and exciting features await on the new Lawrence USD cluster including improved job management, ease of software installation (through modules), and hardwear to push the boundaries of your research computing experience. Below you will find a guide for transitioning to this new environment. More detailed information is also available in the Lawrence specific documentation.

Job Management: SGE to Slurm

The new Lawrence cluster uses Slurm for job management (on Legacy job management is completed with Sun Grid Engine). Below, you will find a table comparing basic command usage between Grid Engine and Slurm:

Command

Sun Grid Engine (Legacy)

Slurm (Lawrence)

Interactive login

qlogin

srun --pty bash

Job submission

qsub [scirpt_file]

sbatch [script_file]

Job deletion

qdel [job_id]

scancel [job_id]

Job status by job

qstat -u \* [-j job_id]

squeue [job_id]

Job status by user

qstat [-u username]

squeue -u [user_name]

List queue

qconf -sql

squeue

Cluster status

qhost -q

sinfo

GUI

qmon

sview

For more detailed information on Slurm commands visit the Slurm .

Transferring Data to Lawrence from Legacy

The data in a home directory on Legacy may be transferred to Lawrence using the rsync utility. More details can be found on the Rsync .

For example, to copy the directory called data/ from Legacy to Lawrence use a command like the following - don't forget the colon at the end.

[choover@login-0-0 ~]$ rsync -az data choover@lawrence.usd.edu:

Warning: Permanently added 'lawrence.usd.edu' (RSA) to the list of known hosts.

[choover@login-0-0 ~]$

webpage
webpage