Results 1 to 2 of 2

Thread: Broken Packages

  1. #1
    Join Date
    Dec 2010
    Location
    IR, Teh
    Beans
    Hidden!
    Distro
    Ubuntu 12.04 Precise Pangolin

    Broken Packages

    Hello.
    Can I skip the "apt-get install -f" and forget the broken packages?
    I have a lot of broken packages and I do NOT WANT to download thats.
    Last edited by smss; January 4th, 2013 at 12:20 AM.

  2. #2
    Join Date
    Nov 2012
    Location
    Halloween Town
    Beans
    Hidden!
    Distro
    Xubuntu Development Release

    Re: Broken Packages

    IMHO, if I were you, I wouldn't skip it.

    The most basic fixes to resolve dependencies problems is to run:
    Code:
    sudo apt-get -f install
    The -f option stands for “fix broken”. apt will attempt to correct broken dependencies. If you manually installed a package that had unmet dependencies, apt-get will install those dependencies, if possible, otherwise it may simply remove the package that you installed in order to resolve the problem.

    Afterwards, run:
    Code:
    sudo dpkg --configure -a
    Then, run this again:
    Code:
    sudo apt-get -f install

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •