-1

Often I install softwares/packages using apt-get. If the installation is stopped or interrupted anyhow, then how to find and remove the partially installed files? Besides if I install the same package later, will the apt-get installation process create duplicate files?

Voldemort
  • 1
  • 3

1 Answers1

1

Try this:

sudo apt-get -f install

And then:

update, upgrade, reinstall, etc...

Oscar LT
  • 787
  • 1
  • 4
  • 24