Archive cleanup status

Over time, the Ubuntu archive accumulates multiple versions of libraries and applications, and some packages become obsolete. From time to time they need to be cleaned up to minimize security update overhead, not waste CD space, etc.

Detecting multiple versions

  wget -O - http://archive.ubuntu.com/ubuntu/dists/gutsy/main/binary-i386/Packages.gz | zgrep "^Package: " | awk '{print $2}' | sed -e "s/c2//; s/c102//; s/[-0-9.]//g" | sort | uniq -d | less

Deprecated libraries in main which we need to get rid of

ArchiveCleanupStatus (last edited 2008-08-06 16:26:42 by localhost)