Skip to content

Instantly share code, notes, and snippets.

@Zelnes
Zelnes / old-releases-packages.sh
Created June 17, 2022 09:47
List old packages ubuntu
# Steps to download infos on packages for ubuntu releases that are not
# updated anymore (old-releases)
distro=precise
# Download and extract infos
for i in main multiverse restricted universe; do
wget -O $i.gz "http://old-releases.ubuntu.com/ubuntu/dists/${distro}/${i}/binary-amd64/Packages.gz"
gzip -d $i.gz
done