Sometimes package installating or upgrading process can be broken for some reasons.
In cases like thatDO NOT reboot your system, try to fix it before rebooting.
If you already rebooted the system and you cannot log back in to your account, reboot it again and run the system inRecovery Mode.
Every command has to be run with super user privilegessudo.
Fix broken packages viadpkg tool - it will install all already downloaded packages:
sudo dpkg --configure -a
Sometimes broken packages need more (missing) dependencies, sodpkg can't solve that. Useapt-get to fix everything what is not properly configured yet and needs some new packages to be downloaded:
sudo apt-get update sudo apt-get install -f
If you just fixed some packages after broken upgrading process, run upgrade again, to make sure that there is nothing left to be upgraded/fixed again:
sudo apt-get dist-upgrade