Problem installing packages
Solution 1:
Here the solution for this problem, super easy way ;)
You have to use dpkg direct to solve this problem sometimes.
"Here we go again"
The package multiarch-support is unpacked, but has never been configured
this means the package soon will configure, but is not configured yet.
When is the status unpacked
the package is not installed yet, so the package libgcc1
cannot install because of the dependency is not installed yet and cannot be installed before multiarch-support
.
We have to force the installed status for multiarch-support to do the trick.
nano /var/lib/dpkg/status
find the the line starting with Package:
something like:
Package: multiarch-support
Status: install ok unpacked
You have to change the unpacked
to installed
Now try:
sudo dpkg --configure --pending
sudo apt-get install --reinstall multiarch-support libgcc1 debconf
I think you can get the system working again this way, let me known if you can do.
Solution 2:
I believe your /var/lib/dpkg
directory with its contents is screwed up. Mainly because of this line, I think your package management is unrecoverable broken.
multiarch-support is unpacked, but has never been configured.
Additionally,
apt-extracttemplates failed: No such file or directory
Means that /usr/bin/apt-extracttemplates
is not available on your system, which is really out of the ordinary.
This does not break by itself; either data corruption or user error (e.g. rm -rf files-you-should-never-delete
) is the cause of this. My best bet would be on backing up your data (e.g. /home
) and start with a fresh installation.