packages:cleanup
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revision | |||
packages:cleanup [2016/07/05 15:40] – peter | packages:cleanup [2019/12/01 11:48] (current) – removed peter | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | ====== Packages - Cleanup ====== | ||
- | |||
- | APT keeps a copy of each downloaded **.deb** file in the directory **/ | ||
- | |||
- | To save up some space via **apt-get** you can use these commands: | ||
- | |||
- | <code bash> | ||
- | apt-get autoclean | ||
- | apt-get clean | ||
- | </ | ||
- | |||
- | **autoclean** removes unused dependencies, | ||
- | |||
- | **clean** just removes all the packages in the apt cache. | ||
- | |||
- | |||
- | ===== Purge unused packages ===== | ||
- | |||
- | <code bash> | ||
- | aptitude clean --purge-unused | ||
- | </ | ||
- | |||
- | **WARNING**: | ||
- | |||
- | ===== Find Package Dependencies ===== | ||
- | |||
- | When cleaning up a system, it is recommended to consider package dependencies. | ||
- | |||
- | To show all the packages which are installed on your system because some package recommends it, but they are not actually dependencies of packages: | ||
- | |||
- | <code bash> | ||
- | aptitude search '?and( ? | ||
- | </ | ||
- | |||
- | can give something like this: | ||
- | |||
- | <code bash> | ||
- | i A apt-xapian-index | ||
- | i A exim4 | ||
- | i A file - | ||
- | i A heirloom-mailx | ||
- | </ | ||
- | |||
- | Check the output and if needed remove them all. | ||
- | |||
- | **WARNING**: | ||
- | |||
- | <code bash> | ||
- | aptitude search '?and( ? | ||
- | </ | ||
- | |||
- | Then we have the all time favorites to see sizes: | ||
- | |||
- | <code bash> | ||
- | df -h | ||
- | du -h | grep ^[0-9.]*M | sort -rn | ||
- | du -h | grep ^[0-9.]*G | sort -rn | ||
- | </ | ||
- | |||
packages/cleanup.1467733227.txt.gz · Last modified: 2020/07/15 09:30 (external edit)