General
Best Practices
Event Procedure
Helpdesk Request Form
Lab Closure Procedure
Links
Resource Drive Conventions
Resource Map
Shipping (FedEx)
Shipping (International)
Suggestion Box
Support Article Guidelines
Welcome
Information Technology
Email & Calendar
Add Calendars to iPhone
Confidential emails
Create a Shared Calendar
Create an Email Group
Email Filters & Rules
Email Groups
Email Headers
Email Signatures
Google 2-Step Verification
Google Calendar Overview
Phishing
Schedule emails
Staff Minus One Emails
Using Outlook with Gmail
Using Yubico Security Keys with your Google account
Print & Fax
Software
1Password
Adobe Acrobat DC
Adobe Creative Cloud
ArcGIS
Colby VPN
Combine PDFs in Adobe Acrobat
Excel Trust Settings
Install Falcon Antivirus
Microsoft Office
Microsoft Office Runtime Error Fix
Mosyle Mac Enrollment
Raiser's Edge
Slack
Software Resources
Uninstall OpenVPN
Windows 10 - Restore from backup
Updates
2020 December - email name spoofing
2020 October - COVID resources
2021 December - WiFi
2021 January - Zoom recording + private chat
2021 March - NetSuite Google authentication
2021 March - VPN Upgrade
2023 - Zoom Updates
2024 May - VPN SSO
DNS
DNS Change
Data Storage and Computer Backups
Google Drive
HPCC and Storage Proposal Information
Laptop Recommendations
Loaner Hardware
Migrating data from Storage to Google Drive
Passwords
Phones
Restoring Files
Storage
VPN
VPN Migration
Vendor Access
Website Request
WiFi
Zeiss Digital Classroom
HR & Payroll
Paid Time Off
Payroll Overview & FAQ
Personnel Offboarding
Personnel Onboarding
Timesheet Approval (supervisors)
Timesheets
Facilities
BMS Access
Bigelow R/V Billing Form
E&I Wing Construction Update
R/V Bowditch Reservation Center
R/V Clarice Reservation Center
Finance
Admin
Budget & Reports
Invoicing
Policies & Procedures
Advancement Entry of Donations and Pledges
Corporate Traveler / Melon
Gas and Cryo-Supply Ordering Process and Form Link
Purchasing Flowchart - for staff reference
Purchasing Policy
Vendors Exempt from Purchase Orders
Proposals
Purchase & Expense
Bill/Invoice Approval
Creating a Bill to be Paid
Equipment Capitalization Help
Expense Report
Expense Report (example)
Non-Employee Reimbursement
Purchase Order
Purchase Order (example)
Purchase Order (supplemental)
Recurring Purchase Order (SRS)
Amazon.com
Approval Reminders
Business Office Orientation
Capital One - Corporate Credit Card
Customize Dashboard
Dashboard (SRS)
NetSuite FAQ
NetSuite Login
NetSuite shortcuts
Revenue Flow Chart
Workshop, Training Projects, and Participant Support Help
Computing
Software
AAI Calculation
ANI Calculation
AlphaFold
Anvi'o
Conda environments
Jupyter notebook
Prokka
RStudio
dada2
sag-mg-recruit
Job management
Charlie Overview
Connect to Charlie
Edit with VS Code
Getting Started
Monitor jobs
Software modules
Transfer files
Zoom
- Home
- Computing
- Job management
- Job status (qstat)
Job status (qstat)
Updated
To see all jobs on Charlie (running and queued), use the qstat -a
command (/opt/pbs/bin/qstat
). It will generate a table with the job id, name, user, and resource requests (nodes, cpus/tsk, memory, time).
Option | Description |
-1 | Add as last argument to keep each job to one line (used with -n and -s) |
-a | Show additional information, including requested resources |
-f <job id> | Show full information about job |
-J | Limit status information to job arrays. |
-n | Show node that job is running on (if used with -a, use -n after -a) |
-p | Show percentage complete instead of time used column (cannot be used with |
-q | Show all queues and the total requested resources for all jobs in each queue (do not use with other options) |
-s | Show job start time, node, cpus, and memory for running jobs. Use with |
-t | Show status information for jobs, job arrays, and sub‐ jobs |
-T | Show estimated start time instead of elapsed time |
-u <username> | Show jobs for a specific user |
-w | Use wider fields (up to 8 characters wide instead of 4) |
-x | Show status information for finished and moved jobs |
The status column uses one letter to represent the status of a job. Use the table below to as a reference.
Status | Description |
E | Exiting after having run |
F | Finished |
H | Held |
Q | Queued |
R | Running |
S | Suspended (contact admin to resume) |
W | Waiting for submitter-assigned start time to be reached |
X | Completed execution or has been deleted |
Examples
# Show job status and requested resources
qstat -a
# In addition to qstat -a output, shows which node a job is running on
qstat -an1
# Show all queues and the total requested resources for all jobs in each queue
qstat -q
# Show all jobs for user hbigelow
qstat -u hbigelow
# Show all information for job with job id 123456
qstat -f 123456