Home Directories

What is the amount of disk space I’m allocated to use?

Unless a special allocation has been approved for you through a Computer Science professor, allocations are as follows:

Undergraduates: 8000 Mbytes
Graduates: 12000 Mbytes

Please also note that total quota allocations exceed the size(s) of the disk(s). This means that if everybody uses their entire allocation, the disk will fill up. So please try to stay well below your personal allocation.

You will receive daily warning messages if you exceed your allocation. Failure to remedy the situation after several days of repeated warnings will result in the suspension of your computer account.


I received a warning about disk usage, how do I get myself under the allowed disk quota?

If you receive an email warning about exceeding your disk usage, you must clean up and get below the limit, otherwise your account would get locked. Read this guide which walks you through this process.


How do I determine my total disk usage?

Enter the following commands:

cd; du -sh .

This du command returns an integer value representing the total number of blocks you are currently using in your home directory. The -h option requests output in human readable byte sizes instead of the default of 512 byte blocks.


How do I find my largest subdirectories or files?

This command lists the usage for each of your subdirectories:

du -sh * .??* | sort -rh | more

How do I empty my Gnome Trash can?

Right-click on the trashcan symbol on the far left of your Desktop. Select ‘Empty Trash.’


How do I clean out my .mozilla/firefox directory?

First, bring up firefox. Go into edit/preferences/advanced and reduce the disk cache size. 10 or 15 megabytes is probably sufficient.

Next, go into edit/preferences/privacy and reduce your browsing history. The default is 90 days but 14 or 30 days will save a fair bit of space.

Next, go to tools/“clear recent history” check all boxes and click “Clear Now”.


How do I clean up my Google Chrome data?

To clean up Chrome, click the wrench icon on the far right of the toolbar and choose “Preferences” from the drop-down menu. On the “Under the Hood” tab, click the “Clear browsing data…” button and choose the data you want cleared. Generally the cache takes up the most disk space.

User data is stored in ~/.config/google-chrome/
Cache is stored in ~/.cache/google-chrome/

Currently Chrome does not offer an easy way to limit the amount of cache it stores on disk. To remedy this, you will need to run Chrome from a terminal or custom Gnome shortcut and pass the following options:

google-chrome --media-cache-size=15728640 --disk-cache-size=15728640

Where 5242880 represents the size of Chrome’s cache in bytes. 5242880 (5 MB) should be reasonable, but you can tweak to your liking.


How can I compress files that I use only rarely?

gzip can be used to compress/uncompress a file that is used rarely.

gzip --best filename
gunzip filename.gz

You may also want to check the man pages for the gzip and tar commands.