On Ubuntu Precise and just learning how to use apt-get, I ran:
sudo apt-get install libfolks25
It installed a slew of files, many marked vivid
. And, of course, installing things I really didn't want to install. Yes, I should have run in simulated mode first.
It ended with
dpkg: error: configuration error: /etc/dpkg/dpkg.cfg.d/multiarch:1: unknown option 'foreign-architecture'
dpkg: error: configuration error: /etc/dpkg/dpkg.cfg.d/multiarch:1: unknown option 'foreign-architecture'
dpkg: error: configuration error: /etc/dpkg/dpkg.cfg.d/multiarch:1: unknown option 'foreign-architecture'
E: Sub-process /usr/bin/dpkg returned an error code (2)
If I use apt-cache policy libfolks25
, it still shows version 0.6.8-2
.
Is there a way to 'undo' to previous versions of all the files it says were installed?
find /etc/apt/ -type f -name '*.list' -print0 | xargs -0 grep 'vivid' {}
– A.B. Feb 24 '16 at 08:07lsb_release -a; cat etc/dpkg/dpkg.cfg.d/multiarch
– A.B. Feb 24 '16 at 08:17