Frequently Asked Question

What is my account quota?
Last Updated 7 years ago

There is a 2GB disk space and 32768 file count home directory quota for all CS department accounts. To view you quota simply type the following command in the shell:

techie@wolverine:~$ quota -s

Disk quotas for user techie (uid 3697):
Filesystem space quota limit grace files quota limit grace
f85:/vol/vol1 829M 2048M 2048M 7902 32768 32768
The space and files fields are what you are currently using while the quota/limit are you limits.

To find out where the majority of your data is located that may need to be purged you can type the following command in the shell:

techie@wolverine:~$ du -sh ./*

72K ./C:\nppdf32Log\debuglog.txt
28K ./compiz-check
44K ./Desktop
40K ./Documents
16K ./dostuff
4.0K ./dostuff.cc
2.6M ./Downloads
28K ./duy PATH.odt
4.0K ./INBOX.Drafts
2.1M ./INBOX.Sent
4.0K ./INBOX.Trash
0 ./libpeerconnection.log
32K ./Library
16K ./mail
12K ./Mail
508K ./matMulGPU
4.0K ./Music
247M ./NVIDIA_GPU_Computing_SDK
4.0K ./Pictures
4.0K ./Public
12K ./queryvmx.py
4.0K ./ryanscool
4.0K ./sent
16K ./snapshot2.png
4.0K ./Templates
140K ./testimage
12K ./tmp.doc
12K ./tmp.odt
4.0K ./Videos
228K ./workspace
techie@wolverine:~$
And finally, if you would like to get your file counts to determine what needs to be purged you can type the following at the console:

techie@wolverine:~$ find . -maxdepth 1 -type d | while read -r dir; do printf "%s:\t" "$dir"; find "$dir" -type f | wc -l; done

.: 5472
./.config: 1070
./.skel: 10
./.cache: 1282
./.dbus: 11
./.local: 468
./.gconf: 17
./Desktop: 8
./.gnome2: 3
./.subversion: 3
./.pulse: 36
./.eclipse: 64
./.gvfs: 0
./.icedteaplugin: 2
./.mozilla: 203
./.gnome2_private: 0
./.gconfd: 1
./.ssh: 3
./.matlab: 26
./.adobe: 14
./.macromedia: 24
./.wapi: 44
./Documents: 6
./.thunderbird: 24
./.gstreamer-0.10: 2
./.fontconfig: 56
./.hplip: 1
./.kde4: 157
./Library: 9
./.felix: 0
./.rcc: 0
./.qt: 2
./.xine: 1
./.pki: 3
./.wing101-3: 11
./.ooo3: 93
./.xdg_menu_cache: 2
./.vnc: 6
./.compiz: 1
./.netx: 1
./.gegl-0.0: 1
./workspace: 31
./.gnupg: 17
./.gimp-2.6: 13
./.Skype: 10
./.aqemu: 0
./.themes: 0
./ryanscool: 0
./.icons: 0
./.thumbnails: 0
./.scim: 0
./.dvdcss: 1
./Mail: 2
./Templates: 0
./Public: 0
./Music: 0
./Pictures: 0
./Videos: 0
./.vim: 1
./mail: 3
./.android: 1
./.svnqt: 0
./.emerald: 17
./.emacs.d: 0
./.libreoffice: 91
./Downloads: 4
./NVIDIA_GPU_Computing_SDK: 1342
./matMulGPU: 19
./.nv: 204
./.mission-control: 0
./.AbiSuite: 2
./.wing101-4: 11
techie@wolverine:~$

Please Wait!

Please wait... it will take a second!