User Tools

Site Tools


packages:find_large_packages

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

packages:find_large_packages [2016/07/04 08:23] – created peterpackages:find_large_packages [2019/12/01 11:52] (current) – removed peter
Line 1: Line 1:
-====== Packages - Find Large Packages ====== 
- 
-Issue this command: 
- 
-<code bash> 
-dpkg --get-selections | cut -f1 | while read pkg; do dpkg -L $pkg | xargs -I'{}' bash -c 'if [ ! -d "{}" ]; then echo "{}"; fi' | tr '\n' '\000' | du -c --files0-from - | tail -1 | sed "s/total/$pkg/"; done | sort -rn > ~/packages.log.txt 
-</code> 
- 
-If you run this as root, when its finished you will have a file in /root called **packages.log.txt** which has all the packages from your system in it with the size of the package and the files it uses: 
- 
-<code bash> 
-15312 perl-modules 
-14192 php5-cgi 
-12588 perl 
-12400 coreutils 
-12396 iso-codes 
-11232 aptitude 
-10684 binutils 
-9916 python2.5  
-</code> 
- 
-You can also use something like: 
- 
-<code bash> 
-dpkg-query -Wf '${Installed-Size}\t${Package}\n' | sort -n  
-</code> 
- 
-but this also takes the size of databases and extra files. 
  
packages/find_large_packages.1467620611.txt.gz · Last modified: 2020/07/15 09:30 (external edit)

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki