View Single Post
Posts: 299 | Thanked: 557 times | Joined on Aug 2012
#12
Originally Posted by thedead1440 View Post
you can run as root in terminal:

apt-get autoremove

this would delete the .deb files that you may have downloaded into your root partition; other than that you shouldn't be messing with anything else...
What you want is
Code:
apt-get clean
You could as well go with
Code:
cd /
du -k * | sort -nr | head
which will give you a reverse ordered list from biggest to smallest file (filesize is shown in kilobytes).

Or you could just check folder sizes with
Code:
du -sk * | sort -nr | more

Last edited by brkn; 2012-10-05 at 18:21. Reason: edited folder size code for sortability
 

The Following 3 Users Say Thank You to brkn For This Useful Post: