Comparaison des versions

Légende

  • Ces lignes ont été ajoutées. Ce mot a été ajouté.
  • Ces lignes ont été supprimées. Ce mot a été supprimé.
  • La mise en forme a été modifiée.

...

Volet

a) Check your home quota with the command:
        quota
    You will, for example, get something like this:
    
    Filesystem  blocks   quota   limit   grace   files | blocks      quota     limit        grace       |    files   quota   limit   grace
   /dev/mapper/cachedev2
                                          526388* 500000  550000 49652days 550000   9days    4161       0       0
    
    This means:
        - currently you are using 526388 kB. The '*' indicates you are over your quota
        - your quota is 500000 kB
        - for some time you can use up to 550000 kB. This time is expired in '9days'.


Volet

b) Find your large files and directories
         du -hsc .[a-z]*  *
or to just find the big files/directories (and a few others that contain the letter 'M'):
         du -hsc .[a-z]*  * | grep M

Start in your home directory and then descend into the large subdirectories until you find the big files.

...