Filelight is convenient if you prefer a GUI for this sort of exploration. https://kde.org/applications/en/filelight
Duf: Disk Usage/Free Utility
31–40 of 46 posts
Re: Duf: Disk Usage/Free Utility
#32Filelight is convenient if you prefer a GUI for this sort of exploration. https://kde.org/applications/en/filelight
I personally have used k4dirstat, but while finding it's webpage I found out that there's a more modern fork/recreation called qdirstat that doesn't need kde either called qdirstat. https://github.com/shundhammer/qdirstat
Re: Duf: Disk Usage/Free Utility
#33Re: Duf: Disk Usage/Free Utility
#34Re: Duf: Disk Usage/Free Utility
#35Re: Duf: Disk Usage/Free Utility
#36For a CLI alternative to manually running `du -sh *` recursively to try and find which directory is taking up your space I recommend `ncdu`. I'm pretty sure there was a similar CLI app better than `ncdu` but I don't recall it right now.
alias duf='du -sk * | sort -n | perl -ne '\''($s,$f)=split(m{\t});for (qw(K M G)) {if($s<1024) {printf("%.1f",$s);print "$_\t$f"; last};$s=$s/1024}'\'
Re: Duf: Disk Usage/Free Utility
#37https://beijaflor.io/blog/06-2020/filesaver-freeing-up-space...
Re: Duf: Disk Usage/Free Utility
#38Earlier quoted context omitted.
There is also Duc: https://duc.zevv.nl/ . It has a both a Tui and a Gui, but can also do nifty CGI things (shameless plug)
I love duc but man is it nearly impossible to build.
Re: Duf: Disk Usage/Free Utility
#39Filelight is convenient if you prefer a GUI for this sort of exploration. https://kde.org/applications/en/filelight
Re: Duf: Disk Usage/Free Utility
#40For a CLI alternative to manually running `du -sh *` recursively to try and find which directory is taking up your space I recommend `ncdu`. I'm pretty sure there was a similar CLI app better than `ncdu` but I don't recall it right now.