Still over quota, after deleting files: Difference between revisions

From LWP-Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 1: Line 1:
[[Category:home-directory-faq]]
[[Category:home-directory-faq]]
If you have deleted files, but still get notified of you disk usage being over quota, you probably deleted the files using a GUI file manager application. Often these applications move file to some sort of "recycle bin" instead of really deleting them.
If you have deleted files, but still get notified of you disk usage being over quota, chances are the files were deleted using a GUI file manager application. Often these applications move file to some sort of "recycle bin" instead of really deleting them.


To solve, empty your "recycle bin".
To solve, empty your "recycle bin".
If this was not the case, the following command will show the 10 largest directory (or files) in your home directory:
    cd ~
    du -hs  .[!.]* *  | sort -h | tail

Revision as of 12:45, 28 July 2021

If you have deleted files, but still get notified of you disk usage being over quota, chances are the files were deleted using a GUI file manager application. Often these applications move file to some sort of "recycle bin" instead of really deleting them.

To solve, empty your "recycle bin".

If this was not the case, the following command will show the 10 largest directory (or files) in your home directory:

   cd ~
   du -hs  .[!.]* *  | sort -h | tail