OK, you're going to have to try some things and be sure to post back here any errors. It may also be neccessary to repeat any number of these commands in no specific order. To start:
Code:
sudo apt-get update
Next we'll try --fix-broken and/or --fix-missing suffixes which can be used both with dist-upgrade or with a specific package like:
Code:
sudo apt-get install keyboard-configuration --fix-missing
Or:
Code:
sudo apt-get install keyboard-configuration --fix-broken
Or with dist-upgrade like:
Code:
sudo apt-get dist-upgrade --fix-missing
Or:
Code:
sudo apt-get dist-upgrade --fix-broken
A lesser used, and seldom helpful suffix is --ignore-missing. But it's seldom helpful although once in a while it can break a log jam long enough to get other packages installed and/or upgraded.
Another helpful command is:
Code:
sudo dpkg --configure -a
And yet another is:
Code:
sudo apt-get -f install
And, as I already said, you may need to repeat any of those in no specific order. If apt-get update shows any errors at all that will prevent you from going any further so let us know.
Bookmarks