Linux Fix Software Errors and Dependancies
- Type
sudo dpkg --configure -a
. It will error out, but don't worry. - Find the files causing the problems and type
sudo dpkg -r PACKAGE_NAME
for each one to remove it. Some of them will fail to be removed. Add them to a list. - Run
sudo dpkg --configure PACKAGE_NAME
for each package in your list. It will configure them. This time, you should not see any errors. - Run
sudo apt-get install -f
to fix dependencies.
- Printer-friendly version
- Log in to post comments
- 779 reads