During the upgrading from sparky 7 to sparky 8 the system got stuck at 93%
sudo dpkg –configure -a throws me an error.
What can I do?
What error? An output from your terminal should be nice.
Hi Pavroo.
I eventually fixed it by doing the following:
To fix broken packages on Debian-based distributions using APT:
1. Open the terminal by pressing Ctrl + Alt + T on your keyboard and enter:
sudo apt --fix-missing update
2. Update your system's package list from the available sources:
sudo apt update
3. Now, force the installation of the broken packages using the -f flag. APT will
automatically search for broken packages on your system and reinstall them from the
official repository.
sudo apt install -f
Source:
https://www.makeuseof.com/how-to-find-and-fix-broken-packages-on-linux/
That did the trick, and it went on from where it stopped.