Frequently encountered blockers
Find solutions to frequently encountered issues here
Last updated
Find solutions to frequently encountered issues here
Last updated
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.
Run showquota
or myquota
to see your file system space usage. If 'home' is 40GB or greater that's your issue.
Run du -sh *
in your home directory and look for any large directories.
Run du -sh .[^.]*
in your home directory and look for any large dot directories. Common issues are large .cache
directory and large .conda
directory
Alternatively, you can use the Ncurses Disk Utility tool via shifter to view your home directory usage with an ncurses GUI:
Quick solution: conda clean --all
Permanent Solution: Change conda env directory to a project directory
Quick solution: Delete it! rm -rf .cache
Is this safe to do? Yes (probably) but you may want to move a backup of the directory to a project directory if you're worried about it.