Getting Started
Learn how to set up your account and access the REPACSS HPC cluster.
Prerequisites
Account Requirements
Current Status (TTU Test Users Only)
- Valid TTU eRaider account
- GlobalProtect VPN access
Future Status (ACCESS Integration)
- TTU users: TTU eRaider account
- ACCESS users: ACCESS account
- Active project allocation
- Completed training requirements
System Requirements
- SSH client (e.g., MobaXterm for Windows, Terminal for Mac/Linux)
- GlobalProtect VPN client
- Two-factor authentication (2FA) setup
- Basic knowledge of Linux command line
Initial Setup
Request Access
- Ensure you have a valid TTU eRaider account
- Install and configure GlobalProtect VPN:
- Set up two-factor authentication
- Contact system administrators for access approval
Connect to REPACSS
Important: All users off-campus must connect through GlobalProtect VPN
Windows Users
- Download and install MobaXterm
- Open MobaXterm and create a new SSH session
- Enter the following connection details:
Host: repacss.ttu.edu
Username: your_eRaider_username
Mac/Linux Users
- Open Terminal
- Type in the following command:
ssh username@repacss.ttu.edu
Successful Connection
After entering your password, you'll see the welcome message:
*************************************************************** Welcome to the REPACSS HPC Cluster ▗▄▄▖ ▗▄▄▄▖▗▄▄▖ ▗▄▖ ▗▄▄▖ ▗▄▄▖ ▗▄▄▖ ▐▌ ▐▌▐▌ ▐▌ ▐▌▐▌ ▐▌▐▌ ▐▌ ▐▌ ▐▛▀▚▖▐▛▀▀▘▐▛▀▘ ▐▛▀▜▌▐▌ ▝▀▚▖ ▝▀▚▖ ▐▌ ▐▌▐▙▄▄▖▐▌ ▐▌ ▐▌▝▚▄▄▖▗▄▄▞▘▗▄▄▞▘ This system is part of the REmotely-managed Power Aware Computer Systems and Services (REPACSS) project. Unauthorized access is strictly prohibited. All login attempts and activities are monitored and logged. For support or documentation, visit: https://repacss.org ***************************************************************
Environment Setup
# Load required modules
module load <module_name>
# Set up your environment
source ~/.bashrc
# For Python users, set up Miniforge (see Python Environment Setup guide)
Basic Commands
Navigation
pwd
- Current directoryls
- List filescd
- Change directoryFile Operations
cp
- Copy filesmv
- Move filesrm
- Remove filesmkdir
- Create directoryJob Management
sbatch script.sh
- Submit a jobsqueue -u username
- Check job statusscancel job_id
- Cancel a jobsinfo
- Check cluster status