Diskte temizlik yaparken, hangi yüklü paketlerin ne kadar yer kapladığını bilmek isteriz. Aşağıdaki komut bu işe yarıyor. Gayet güzel bir liste veriyor.
1 |
dpkg-query --show --showformat='${Package;-50}\t${Installed-Size}\n' | sort -k 2 -n | grep -v deinstall | awk '{printf "%.3f MB \t %s\n", $2/(1024), $1}' | tail -n 50 |
Komut, sadece en büyük 50 paketi listeliyor. Daha fazla sayıda paketi görmek için; tail komutunun -n parametre değeri ile oynayabilirsiniz.
Örnek çıktı:
1 2 3 4 5 6 7 8 9 10 11 |
$ dpkg-query --show --showformat='${Package;-50}\t${Installed-Size}\n' | sort -k 2 -n | grep -v deinstall | awk '{printf "%.3f MB \t %s\n", $2/(1024), $1}' | tail -n 10 115.573 MB linux-image-extra-3.5.0-24-generic 123.410 MB linux-image-extra-3.8.0-22-generic 128.215 MB google-chrome-stable 142.407 MB linux-image-3.2.0-31-generic 142.441 MB linux-image-3.2.0-32-generic 142.574 MB rstudio 147.883 MB libobasis4.0-core04 265.219 MB nexuiz-data 325.836 MB dassault-systemes-draftsight 498.863 MB nexuiz-textures |
Kaynak: http://www.upubuntu.com/2011/09/check-how-much-disk-space-programs-and.html