Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Hotfix/quick updates #206

Merged
merged 2 commits into from
Jun 14, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions docs/source/getting_started/storage_quota.rst
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,20 @@ When you login to Viking you will be told if you are over quota. If this is in u

If you are over quota in the ``scratch`` area and need more space please email [email protected] where we can increase your quota. **There is a grace period of 7 days after which you will lose access to Viking.**

.. tip::

If you receive a warning that you have exceeded the 400,000 file limit in your home directory and would like a summary of where all the files are located, try this command:

.. code-block:: console

cd ~ && ls -1d */ .*/ | grep -vE 'scratch|\./|\.\./' | xargs du --inodes -s

This should provide a breakdown of the number of files (technically, file descriptors, also known as ``inodes``) by (top level) directory. If you don't mind waiting for all the results to be sorted try the folllowing command:

.. code-block:: console

cd ~ && ls -1d */ .*/ | grep -vE 'scratch|\./|\.\./' | xargs du --inodes -s | sort -n


Transferring file to and from Viking or backing up
--------------------------------------------------
Expand Down
Loading