Definitely in dangerous territory, so make sure to pull a backup before starting these steps.
Switch to another TTY just as before.
First, try letting the system run the upgrades again:
Code:
sudo apt-get update && sudo apt-get upgrade && sudo apt-get dist-upgrade
Reboot, and if still not working, let's get dpkg involved.
Create a list of all packages on the system:
Code:
dpkg --get-selections | awk '{print $1}' > list_packages
Tell dpkg to reconfigure all of them:
Code:
sudo dpkg -c list_packages
If there are any errors or problems during the process, they'll be logged in `/var/log/dpkg.log`. Check these logs for a detailed understanding of what went wrong.
Give it a try and let me know.
Bookmarks