An upgrade from Ubuntu 14.04 LTS to Ubuntu 15 failed. Package repair hangs at this point:
Setting up resolvconf (1.77ubuntu1) ...
Processing triggers for resolvconf (1.77ubuntu1) ...
resolvconf: Error: /run/resolvconf/interface
either does not exist or is not a directory
dpkg: error processing package resolvconf (--configure)
How can I get past this point?
sudo apt-get remove resolvconf
I want to remove ubuntu-base, which seems not to be a good idea. I see this Debian Bug report.
The problem was probably triggered by a manual attempt on my part to start networking using old-school editing of /etc/resolv.conf
ls -l /run/resolvconf/interface..also after changing/etc/resolv.confmanually you could just dosudo resolvconf -udo makeresolvconfcreating it again..resolvconfdepends onlsb-baseso removing it won't be a good idea.. – heemayl Feb 29 '16 at 04:07sudo mkdir -p /run/resolvconf/interfaceand re-running your package repair. If that fails it might be difficult to fix and you may need to remove and re-install a ton of packages and you may have a broken system. See also - http://blog.bodhizazen.net/linux/apt-get-how-to-fix-very-broken-packages/ – Panther Feb 29 '16 at 05:32