Persson Group Handbook
  • Persson Group Handbook
  • (Materials Project Handbook)
  • Getting Started
    • Before you Arrive
    • After you Arrive
    • Coming Onsite
    • Getting a Computer
    • Workspace Setup
    • Getting Settled
  • Group Policies
    • Meetings
    • Leave Time
    • Purchasing
    • Travel
    • Writing/Submitting Your Paper
    • Group Agreements
  • Computing
    • Setting up your computer
    • Software
    • High Performance Computing (HPC)
      • NERSC (Perlmutter)
        • Conda Environments
        • Frequently encountered blockers
      • BRC (Savio)
      • LRC (Lawrencium)
      • NREL (Kestrel)
    • Simulation Codes
      • VASP
      • Q-Chem
      • Gaussian
      • OpenMM
      • LAMMPS
      • GROMACS
    • Fireworks & Atomate
      • Setup
      • Fireworks: Advanced Usage
    • Machine Learning (ML)
  • Group Administration
    • Group Meeting Schedule
    • Group Jobs (Fall 2024)
    • Physical Resources (printers, etc.)
    • Undergraduate Research Mentoring
    • Contributing to Handbook
    • Group Roster
  • Group resources
    • Tutorials and Helpful Links
    • Group Member Expertise
    • Professional development
    • Health and wellbeing
  • Graduate Students
    • UAW 4811 Contracts
    • Research Credits (298/299)
    • Course Recommendations
    • How to Qual (MSE)
    • How to Graduate
Powered by GitBook
On this page
  • SLURM is rejecting my jobs because my home directory is full
  • Steps to diagnose:
  • What to do if Conda env dirs are too large?
  • What to do if .cache is too large?
Export as PDF
  1. Computing
  2. High Performance Computing (HPC)
  3. NERSC (Perlmutter)

Frequently encountered blockers

Find solutions to frequently encountered issues here

PreviousConda EnvironmentsNextBRC (Savio)

Last updated 7 months ago

SLURM is rejecting my jobs because my home directory is full

e.g. "home directory over quota" ,

We are limited to 40 GB of files in our home directories. This error indicates you have to many files.

Steps to diagnose:

  1. Run showquota or myquota to see your file system space usage. If 'home' is 40GB or greater that's your issue.

  2. Run du -sh * in your home directory and look for any large directories.

  3. Run du -sh .[^.]* in your home directory and look for any large dot directories. Common issues are large .cache directory and large .conda directory

  4. Alternatively, you can use the Ncurses Disk Utility tool via shifter to view your home directory usage with an ncurses GUI:

    shifterimg pull bytesco/ncdu
    shifter --entrypoint --image=bytesco/ncdu

What to do if Conda env dirs are too large?

  • Quick solution: conda clean --all

What to do if .cache is too large?

  • Quick solution: Delete it! rm -rf .cache

Permanent Solution:

Is this safe to do? Yes () but you may want to move a backup of the directory to a project directory if you're worried about it.

Change conda env directory to a project directory
probably