Still over quota, after deleting files: Difference between revisions

From LWP-Wiki
Jump to navigation Jump to search
(Created page with "Category:misc-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...")
 
No edit summary
 
(3 intermediate revisions by 2 users not shown)
Line 1: Line 1:
[[Category:misc-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 the current directory:
    du -hs  .[!.]* *  | sort -h | tail
Note: this command may take some time to finish.

Latest revision as of 09:39, 29 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 the current directory:

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

Note: this command may take some time to finish.