View Single Post
Posts: 1,425 | Thanked: 983 times | Joined on May 2010 @ Hong Kong
#5
Originally Posted by corduroysack View Post
Hi is there a command that you can enter into xterm that will go through the O.S. and rebuild any inconsistancies or check if there is files missing and report what needs to be installed?
You may run the following to check if the package system has any broken dependencies:

Code:
apt-get check
If there's any installation problem occurred before you may resume it by:

Code:
dpkg --configure -a
Better yet, if you know the problematic package in question, you may try the following:

Code:
apt-get install --fix-missing <package name>
Of course, it's chance that the dependencies are broken beyond the help of automatic repairing. You'd need to include some force options that is varying case by base.
 

The Following User Says Thank You to 9000 For This Useful Post: