FAQ: Difference between revisions

From bwHPC Wiki
Jump to navigation Jump to search
Line 25: Line 25:
== Storage and File Systems ==
== Storage and File Systems ==


=== My home directory is full ===
=== I am over the File System Quota ===


There are two resources with limits enforced by quota:
'''Q: I am running out of space in my home directory.'''
* disk space
* number of inodes (files).


It is important to identify the main sources that consume these resources.
A:

See [[Cleaning up your home directory]] for recommended cleanup strategies and cluster-specific best practices.
* Size: List all directories (and files) in your home directory or workspace sorted by size
<code>
du -hs * | sort -h | tail
</code>

Descend in a directory with a large reported size and repeat until you find large files that are worth taking care of.

* Inodes:

<code>
du -s --inodes * | sort -n
</code>

This will only count inodes in subdirectories. Also make sure your top-level (e.g. $HOME) directory aren't full with hundred thousands of files:
<code>
ls -1 | wc -l
</code>

Revision as of 17:08, 27 January 2026

Access and Account Issues

I see 'Status: LOST_ACCESS' in the Registry Info

Answer:

You need to fulfill the requirements outlined in

In short:

See the two links above to learn how to check if you have the entitlement.

If the entitlement is missing: please check with the local support of your home university (the university where you study or are employed)

In case the entitlement is present:

Storage and File Systems

I am over the File System Quota

There are two resources with limits enforced by quota:

  • disk space
  • number of inodes (files).

It is important to identify the main sources that consume these resources.

  • Size: List all directories (and files) in your home directory or workspace sorted by size

du -hs * | sort -h | tail

Descend in a directory with a large reported size and repeat until you find large files that are worth taking care of.

  • Inodes:

du -s --inodes * | sort -n

This will only count inodes in subdirectories. Also make sure your top-level (e.g. $HOME) directory aren't full with hundred thousands of files: ls -1 | wc -l