packages:cleanup
Differences
This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
packages:cleanup [2016/07/04 08:42] – created peter | packages:cleanup [2019/12/01 11:48] (current) – removed peter | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | ====== Packages - Cleanup ====== | ||
- | To save up some space via **apt-get** you can use these commands: | ||
- | |||
- | <code bash> | ||
- | apt-get autoremove | ||
- | apt-get clean | ||
- | </ | ||
- | |||
- | **autoremove** removes unused dependencies, | ||
- | |||
- | **clean** just removes all the packages in the apt cache. | ||
- | |||
- | This handy command shows 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 | ||
- | </ | ||
- | |||
- | |||
- | |||
- | With these commands I keep my servers clean and lean, but if you do something wrong or remove a package like libc6, sysv-rc, apt ore coreutils you'll have to spend your free evening to fix it up :P. | ||
- | |||
- | Note that everything as root. If you get strange errors about permissions then try again as root. |
packages/cleanup.1467621754.txt.gz · Last modified: 2020/07/15 09:30 (external edit)