Whenever I run aptitude safe-upgrade
, I get this output:
The following partially installed packages will be configured:
cups gconf2 ufw update-manager
No packages will be installed, upgraded, or removed.
0 packages upgraded, 0 newly installed, 0 to remove and 2 not upgraded.
Need to get 0 B of archives. After unpacking 0 B will be used.
How can I configure the four mentioned packages?
I tried dpkg-reconfigure gconf2
but that fails with
/usr/sbin/dpkg-reconfigure: gconf2 is broken or not fully installed
autoremove
I got one additional error:E: Could not perform immediate configuration on SOMEPACKAGE
. That was resolved byapt-get install -o APT::Immediate-Configure=false -f apt SOMEPACKAGE
– dnsmkl Mar 03 '15 at 19:50apt-get autoremove
does not work and results in many errors c.f.: http://pastebin.com/SgM46XE6 how can I get a work around? – Rene Pickhardt Nov 27 '16 at 12:54sudo apt-get --fix-broken install
. – galath Jul 15 '17 at 01:08