Also, on my laptop I use this cron.daily scrip (a modification of standard Fedora one) to keep track of bloatware: #!/bin/sh tmpfile=`/bin/mktemp /var/log/rpmpkgsz.XXXXXXXXX` || exit 1 /bin/rpm -qa --qf '%{fssizes} %{name}-%{version}-%{release}.%{arch}.rpm\n' 2>&1 \ | /bin/sort -n -r > "$tmpfile" if [ ! -s "$tmpfile" ]; then rm -f "$tmpfile" exit 1 fi /bin/mv "$tmpfile" /var/log/rpmpkgsz /bin/chmod 0644 /var/log/rpmpkgsz On Fri, Aug 29, 2008 at 4:21 PM, Vasile Gaburici <vgaburici@xxxxxxxxx> wrote: > Gnome has baobab. > > On Fri, Aug 29, 2008 at 4:09 PM, Richard W.M. Jones <rjones@xxxxxxxxxx> wrote: >> On Thu, Aug 28, 2008 at 09:16:55PM +0100, Daniel P. Berrange wrote: >>> Of course finding the bits >>> which aren't needed is fun in itself & somewhat of a moving target. >> >> There's an awesome KDE program called filelight >> (http://www.methylblue.com/filelight/ but also packaged in Fedora) >> which I use to find those files that take up all the space. >> >> Rich. >> >> -- >> Richard Jones, Emerging Technologies, Red Hat http://et.redhat.com/~rjones >> virt-top is 'top' for virtual machines. Tiny program with many >> powerful monitoring features, net stats, disk stats, logging, etc. >> http://et.redhat.com/~rjones/virt-top >> >> -- >> fedora-devel-list mailing list >> fedora-devel-list@xxxxxxxxxx >> https://www.redhat.com/mailman/listinfo/fedora-devel-list >> >> > -- fedora-devel-list mailing list fedora-devel-list@xxxxxxxxxx https://www.redhat.com/mailman/listinfo/fedora-devel-list