What are the places in the file system that can be deleted safely to recover disk space. To be specific is it safe to delete /var/cache/pkg/* ? if so what other places are similar (can be deleted) to free disk space.
You can also search for large files under a path that you might want to delete with something like find . -type f -size +25M -exec du -m {} \; | sort -n.
If you want directory totals something like du -sm * | sort -n can help.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.