Differences between revisions 1 and 16 (spanning 15 versions)
Revision 1 as of 2009-06-25 21:16:40
Size: 515
Editor: 41-62
Comment:
Revision 16 as of 2020-08-31 13:46:03
Size: 522
Editor: alders
Comment:
Deletions are marked like this. Additions are marked like this.
Line 1: Line 1:
= How can I find storage-hungry files in my home? =
Using the following commands, you can get a list of items in your home, sorted by size in MB:
#rev 0001-01-01 hgiger
Line 4: Line 3:
`gdu -sm ~/.??* ~/* | sort -n | less` = How can I find space eating files in my home? =
Line 6: Line 5:
If you replace `-sm` with `-sk`, the size will be shown in KB. There are many ways to get the information you need. Some examples are:
Line 8: Line 7:
If you prefer a graphical approach, try: `gdu -k ~| xdu`. This will take some time to complete, but should result in a graphical window showing what is using up your precious quota space. == Command line variant 1 ==
With the following command, you get a list of items in your home, sorted by size in MB:
{{{du -sm ~/.??* ~/* | sort -n -r | less}}}
Line 10: Line 11:
If this doesn't convince you, you can try a tool like `treesize`. == Command line variant 2 ==
Use the ncurses based tool {{{ncdu}}}.

== Graphical variant ==
Use a tool like {{{Disk Usage Analyzer}}} on GNOME or {{{Filelight}}} on KDE.

----
[[CategoryEDUC]]

How can I find space eating files in my home?

There are many ways to get the information you need. Some examples are:

Command line variant 1

With the following command, you get a list of items in your home, sorted by size in MB: du -sm ~/.??* ~/* | sort -n -r | less

Command line variant 2

Use the ncurses based tool ncdu.

Graphical variant

Use a tool like Disk Usage Analyzer on GNOME or Filelight on KDE.


CategoryEDUC

FAQ/FindStorageHungryFiles (last edited 2020-08-31 13:50:08 by alders)