Results 1 to 7 of 7

Thread: update stuck

  1. #1
    Join Date
    May 2006
    Location
    Lake Placid, Florida, USA
    Beans
    2,019
    Distro
    Xubuntu 14.04 Trusty Tahr

    update stuck

    My updater is stuck and won't let me update because of this:



    I tried fixing broken packages, but it didn't work, any ideas how to fix?

  2. #2
    Join Date
    Jan 2009
    Location
    ::1
    Beans
    2,485

    Re: update stuck

    I would open a terminal and run

    Code:
    sudo apt-get update
    sudo apt-get upgrade
    and then Google the error message.

  3. #3
    Join Date
    Apr 2011
    Location
    3rd Rock from the Sun
    Beans
    Hidden!
    Distro
    Ubuntu Development Release

    Re: update stuck

    Kill the update manager. Try what sanderj has adviced. If you still get errors:

    Code:
    sudo rm /var/lib/apt/lists/* -vf
    sudo apt-get update && sudo apt-get upgrade
    "Evolution is Nature's way of issuing upgrades."


  4. #4
    Join Date
    May 2006
    Location
    Lake Placid, Florida, USA
    Beans
    2,019
    Distro
    Xubuntu 14.04 Trusty Tahr

    Re: update stuck

    Thanks but I'm still getting error code 1 in terminal

    Last edited by mike555; November 18th, 2013 at 12:27 PM.

  5. #5
    Join Date
    Apr 2011
    Location
    3rd Rock from the Sun
    Beans
    Hidden!
    Distro
    Ubuntu Development Release

    Re: update stuck

    I think your '/' partition is full. You need to create some space. If you have older kernels remove them.

    Run:
    Code:
    sudo update-grub
    This should tell you how many 'unused' kernels you have. Make note of the topmost/latest kernel version.

    Run:
    [/code]uname -r[/code]
    This should tell you what kernel version you are using. If this is not latest then REBOOT. Check again and confirm that you are using latest kernel.

    Run:
    Code:
    sudo dpkg -l linux-* | awk '/^ii/{ print $2}' | grep -v -e `uname -r | cut -f1,2 -d"-"` | grep -e [0-9] | xargs sudo apt-get -y purge
    This should remove all the 'unused' kernels.

    Also check in the '/' directory to see if you have saved any data, and which you can remove.

    Then run:
    Code:
    sudo apt-get update && sudo apt-get upgrade
    "Evolution is Nature's way of issuing upgrades."


  6. #6
    Join Date
    May 2006
    Location
    Lake Placid, Florida, USA
    Beans
    2,019
    Distro
    Xubuntu 14.04 Trusty Tahr

    Re: update stuck

    I'm using 42% of space, so that is not problem .... and I'm using 3.2.0-56-generic

  7. #7
    Join Date
    Jul 2013
    Location
    Wisconsin
    Beans
    4,952

    Re: update stuck

    What about that logfile in the error message? Does it exist? If it exists, check it's permissions. Or try moving or renaming it, so the uninstall script will create a fresh logfile. If the logfile does not exist, try creating one for the script to write to.

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
  •