Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

When you try to log onto a Linux Machine, you get an error message saying "Could not Update ICEauthority" and it won't let you on.

or

When you are able to login via terminal but not graphically or via more complicated programs such as vscode

Reason

This is due to your account hitting either a Space or File Count quota limit.

...

You can judge which are good candidates to delete or compress.

You can manually check the size of a specific directory by using the du command, while the -sh flag puts size in a human readable format.

Code Block
languagebash
themeFadeToGrey
du -sh example_directory

It is also possible to use the find command to recursively check how many files are in a folder and all its sub-folders.

...