Wednesday, January 27, 2016 in Debian
Here is how to fix the no public key available error : apt-key adv --keyserver keyserver.ubuntu.com --recv-keys KEYID
Friday, February 27, 2015 in Debian
Here is how to fix the apt-get “Error occured during the signature verification” : cd /var/lib/apt mv lists lists.old mkdir -p lists/partial aptitude update
Tuesday, January 27, 2015 in Debian
Here is how to force package removal when post-uninstall script fails : dpkg --purge --force-all <package> There is another option if you need to be smarter or if it is a pre-uninstall script that fails. Look at …