How to downgrade a package in Debian using apt-get and apt-cache

See here. Basically:

dpkg --list
apt-cache showpkg packagename
apt-get install packagename=version
echo "packagename hold" | sudo dpkg --set-selections

Leave a Reply