Difference between revisions of "Disk Quotas"

m (Title capitalization.)
(quotas: 4 GiB -> 8 GiB)
Line 5: Line 5:
 
== How Quotas Work on the ''CS Ugrad Net'' ==
 
== How Quotas Work on the ''CS Ugrad Net'' ==
  
Every account that is subject to a quota has a ''soft limit'' and a ''hard limit''.  For most of our CS Ugrad accounts, those are ''4 GiB'' and ''4.5 GiB'', respectively.  You cannot use more disk space than is given by your hard limit; once you hit that limit, all attempts to allocate more space (creating new files, making existing files larger, etc.) will fail.  
+
Every account that is subject to a quota has a ''soft limit'' and a ''hard limit''.  For most of our CS Ugrad accounts, those are ''8 GiB'' and ''8.5 GiB'', respectively.  You cannot use more disk space than is given by your hard limit; once you hit that limit, all attempts to allocate more space (creating new files, making existing files larger, etc.) will fail.  
  
 
If you exceed your soft limit, you will have a grace period of a week.  During that period of time you may continue to create files and add to existing files as normal (as long as you don't hit your hard limit).  If you remain above your soft limit for a full week, the soft limit begins to behave like a hard limit and you will be unable to use any additional space until you reduce your total disk usage below your soft limit.
 
If you exceed your soft limit, you will have a grace period of a week.  During that period of time you may continue to create files and add to existing files as normal (as long as you don't hit your hard limit).  If you remain above your soft limit for a full week, the soft limit begins to behave like a hard limit and you will be unable to use any additional space until you reduce your total disk usage below your soft limit.

Revision as of 14:25, 19 August 2016

On the CS Ugrad Net, the Ugrad accounts may be subject to disk quotas, which are limits on the total amount of data you are permitted to store in your home directory (or, in some cases, other directories). If you exceed a quota, you will be unable to create new files or add to existing files until you reduce the total mount of disk space you're using to go below your quota.

(Note: The CS Grad/Research Net does not currently have disk quotas enabled. But, we ask that uses on this Net be mindful that you are sharing disk space with much of CS.)

How Quotas Work on the CS Ugrad Net

Every account that is subject to a quota has a soft limit and a hard limit. For most of our CS Ugrad accounts, those are 8 GiB and 8.5 GiB, respectively. You cannot use more disk space than is given by your hard limit; once you hit that limit, all attempts to allocate more space (creating new files, making existing files larger, etc.) will fail.

If you exceed your soft limit, you will have a grace period of a week. During that period of time you may continue to create files and add to existing files as normal (as long as you don't hit your hard limit). If you remain above your soft limit for a full week, the soft limit begins to behave like a hard limit and you will be unable to use any additional space until you reduce your total disk usage below your soft limit.

If you cannot allocate more space (you've hit your hard limit or you've exceeded your soft limit for more than a week), you might not be able to log in via the GUI on our computer lab systems. If that happens, you will have to SSH in remotely and reduce your disk usage below your quota.

The CS Department has a notification system in place that will email your CS Ugrad account if you exceed your disk quota. This is a courtesy; you are ultimately responsible for keeping track of whether you're within the limits set for your account.

How to Check Your Quota on the CS Ugrad Net

Log in to one of the Linux Clients on the CS Undergrad Net and run the following command from the command line:

quota

If it doesn't print anything, you are not subject to any quotas. If it does print something, the output will look like this:

Disk quotas for user account (uid 12345):
     Filesystem   space   quota   limit   grace   files   quota   limit   grace
barley.cs.jhu.edu:/home
                 993776  4000000 4500000            9687       0       0

The numbers represent 1024-byte blocks. In the above example, the person is using 993776 blocks, which translates to roughly 970 MiB of data. The quota (aka soft limit) is 4000000 blocks, or just under 4 GiB. The hard limit is 4500000 blocks, or a little under 4.5 GiB.

How to Get Yourself Under Quota on the CS Ugrad Net

If you're over quota, the only way to get back under is to delete or shrink files until your total disk usage is reduced below your limit.

You can use the du command line program to see how much space individual files or directories are using. One of the simplest ways to invoke it is to run the following command from your home directory:

du -h | sort -h

This will show you every directory in your home directory (and every subdirectory of them and every subdirectory of those and so on) and how much space it and all of its contents occupies, with the largest directories shown last. The directories containing the most data are probably the best candidates to start cleaning out.

Another useful command is the following:

du -sh * .??* | sort -h

This lists all of the files and directories in the current directory and their sizes. (The previous command shows all directories, not just the ones directly in the current directory, and it doesn't list files directly; they simply get added to the size tally for the directory they're in.)

NOTE: If You Are Using A Cloud Drive (Dropbox, Google Drive, etc.)

If you have your CS Ugrad Linux account linked to a cloud drive such as Dropbox or Google Drive, please note that those services may download local copies of your cloud files into your Ugrad account. This is an extremely quick way to go over your CS Ugrad disk quota. We recommend you not link cloud drives with your Linux account (unless your cloud drive is very small and well within your CS Ugrad disk quota.) We cannot accomodate users' cloud data within our provided home directory disk resources.

If You Need a Larger Quota on the CS Ugrad Net

If your class projects or research require more disk space than your quota will allow, please contact support@cs.jhu.edu and detail the reasons your current quota is insufficient. (Note: Please do not request a larger disk quota to accomodate cloud drives such as Dropbox and Google Drive.) Please include the following information when requesting more disk space:

  • How much additional space you require.
  • Name and section of class you're taking that's requiring the extra space.
  • Name of the professor teaching the class.

Quota increases are not guaranteed.