CSE faculty, staff, and students get distinct CSE and UBIT UNIX/Linux accounts. Information pertaining to each account is available below.
"I can't log in to my account."
- Check quota. You can't login when your quota is exceeded. Contact cse-consult@buffalo.edu to help you find and delete unnecessary files, or increase your quota if all your files are legitimately needed.
% quota -v
"I'm running out of space! How do I find out which files to delete?"
- Check quota. Use the 'disk usage' UNIX program (du) to discover which of your directories are using the most disk blocks. du is useful for suggesting where your account might need housecleaning:
% du -h --max-depth=1
Some usual places to check first are:
- Your trash folder used by the Windowing environment.
- From the Desktop double click the "Trash Icon".
- From a CLI check out
~/.Trash
- Your Browser Cache
- From the Desktop within Firefox go to "Tools"->"Clear Recent History".
- From a CLI check out
~/.mozilla/firefox/[RANDOM STRING].default/Cache
and ~/.mozilla/firefox/[RANDOM STRING].default/Cache.Trash
"I can't run big applications (like Cadence)."
- Check quota. You might not have enough space to run the application because it needs to write temporary files to your home directory. Use the 'disk usage' UNIX program (du) to discover which of your directories are using the most disk blocks. du is useful for suggesting where your account might need housecleaning:
% du --max-depth=1