...
Volet |
---|
a) Check your home quota with the command: |
Volet |
---|
b) Find your large files and directories .[a-z]* * * | grep M Start in your home directory and then descend into the large subdirectories until you find the big files. |
Volet |
---|
c) (Re)move files and directories 1. Remove whatever you do not need anymore. (this is a form of infinite compression) 2. Put whatever does not need to be in your home under your data space. (e.g. /snow /zwack ....) 3. Use /extras/$USER Move large software directories like .local, .cache, .python, etc. to /extras/$USER/ to move directory abc : cd $HOME mv abc /extras/$USER/. # move the directory ln -s /extras/$USER/abc abc # create a "soft link" in $HOME cd $HOME/abc will still bring you to that directory but will not affect your HOME quota |
...