The issue from my last post is still not solved and has rendered the Snap Store useless. I am getting an error that looks like this while uninstalling the Steam Installer.
"Unable to remove 'Steam Installer':
Error while installing package: installed avg2013flx package post-installation script subprocess returned error exit status 1"
Once again: how do I remove any mention of avg2013flx
from my system? I made a bad tar install and attempted to manually remove every file that had the characters avg in it. Unfortunately it seems I did a poor job since I'm still getting errors like this.
grep
the output ofls
- you can just putls whatever-package*
- result will likely be more readable like that. I would runrm
on one file at a time rather than in a chain of commands - typing isn't saved here and there might be an error that holds things up. You'll also needsudo
torm
files in this directory. Also future readers please note that this isn't a proper method - one should runsudo dpkg --purge whatever-package
and only resort to deleting files manually if everything else has failed - you can cause further issues by doing that – Zanna Dec 14 '21 at 08:15/var/lib/dpkg/info
if one usescheckinstall
to make a deb package at install time, in which case there is no ordinary reason why purging withdpkg
would not work. Even if this procedure was the only thing that worked in your case, I left the comment for other readers who could benefit from trying a more standard approach first. – Zanna Dec 17 '21 at 09:43