-
Notifications
You must be signed in to change notification settings - Fork 50
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add a "quotas" section to /triton/ref, also mention personal vs proje…
…ct quotas - This makes the quota inspectio and fixing commannds more visible. - Review: does the quick ref need to be shorter?
- Loading branch information
Showing
3 changed files
with
41 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
* Read about :doc:`data storage at Aalto </data/index>` and | ||
:doc:`requesting storage space </data/requesting>`. We strongly | ||
recommend project-based storage instead of increasing personal | ||
quotas. | ||
* ``quota`` - print your quota and usage | ||
* ``du -h $HOME | sort -h``: print all directories and | ||
subdirectories in your home directory, sorted by size. This lets | ||
you find out where space is being used. ``$HOME`` can be | ||
replaced with any other directory (or left off for the current | ||
directory). Use ``du -a`` to list all files, not only directories. | ||
|
||
* ``du -h --max-depth=1 $HOME | sort -h``: Similar, but only list | ||
down to ``--max-depth`` levels. | ||
* ``du --inodes --max-depth=1 $HOME | sort -n``: Similar, but list | ||
the number of files in the directories. | ||
|
||
* ``rm`` removes a single file, ``rm -r`` removes a whole directory | ||
tree. **Warning: on scratch and Linux in general (unless backed | ||
up), there is no recovery from this!!** Think twice before you | ||
push enter. If you have any questions, come to a garage and get | ||
help. | ||
* ``conda clean`` cleans up downloaded conda files (but not | ||
environments). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters