Page 1 of 2 12 LastLast
Results 1 to 10 of 12

Thread: E: waiting for unattended-upgr to exit

  1. #1
    Join Date
    Aug 2007
    Beans
    125

    E: waiting for unattended-upgr to exit

    My daughter can't install Zoom because of this error:
    Unable to install Zoom. E: Could not get lock /var/dpkg/lock-frontend. It is held by process 6462 (unattended-upgr)
    And then attempting to Update gets:
    Waiting for unattended-upgr to exit
    All the online help we found suggests complicated IT solutions. But we need a user friendly solution.

    Searching shows this issue is not new or uncommon and is costing many people time and stress.
    E.G. https://ubuntuforums.org/showthread....nattended-upgr

    Does anybody know a user friendly solution? Thanks.
    Ubuntu 20.04.1 LTS Gnome 3.36.8 X11 (Fresh install). See Screenshots below
    Last edited by ianp5a; December 29th, 2020 at 10:34 AM.

  2. #2
    Join Date
    Oct 2006
    Beans
    58,286

    Re: E: waiting for unattended-upgr to exit

    Generally means that the operating system is updating itself and you would need to wait till it is finished before carrying out another software install.

    Give it another go in 30 minutes or so.

  3. #3
    Join Date
    Aug 2007
    Beans
    125

    Re: E: waiting for unattended-upgr to exit

    Thanks. Sadly the error message did not say that. My daughter is talking of going back to Windows. Maybe changing the error message to add what you said would help people.
    Last edited by ianp5a; December 29th, 2020 at 11:56 AM.

  4. #4
    Join Date
    Jun 2010
    Location
    London, England
    Beans
    Hidden!
    Distro
    Ubuntu Development Release

    Re: E: waiting for unattended-upgr to exit

    Ubuntu will automatically check for updates as soon as it is loaded. We can regulate how often it checks by opening Software & Updates>Updates tab and changing the settings using the drop down menus. The options are daily; Every two days: Weekly; Every fortnight: Never. If we set it to never then the system will only be updated if we run these two commands

    Code:
    sudo apt update
    sudo apt upgrade
    That error message could also be due to the user shutting down or a disconnection from the ISP occurs stopping the update process before it is finished.

    Regards.
    It is a machine. It is more stupid than we are. It will not stop us from doing stupid things.
    Ubuntu user #33,200. Linux user #530,530


  5. #5
    Join Date
    Aug 2007
    Beans
    125

    Re: E: waiting for unattended-upgr to exit

    Quote Originally Posted by grahammechanical View Post
    Ubuntu will automatically check for updates as soon as it is loaded. We can regulate how often it checks by opening Software & Updates>Updates tab and changing the settings using the drop down menus. The options are daily; Every two days: Weekly; Every fortnight: Never. If we set it to never then the system will only be updated if we run these two commands
    Code:
    sudo apt update
    sudo apt upgrade
    That error message could also be due to the user shutting down or a disconnection from the ISP occurs stopping the update process before it is finished.
    Regards.
    Thanks. I assume, once the Option is set to 'Daily' or whatever, and then the install error message occurs, switching it to 'Never' will not fix the problem right away? The install is still blocked. Is there no way forward at that point?

    So the solution, as I see it, it to fix the error message. Currently the message is useless to non IT users. There is no suggestion of what to do. Either to wait for a given period or perform some command. There is no button to "Add to queue" as app stores sometimes do.

  6. #6
    Join Date
    Jun 2006
    Location
    Nux Jam
    Beans
    Hidden!
    Distro
    Ubuntu Development Release

    Re: E: waiting for unattended-upgr to exit

    From the icon menu, select "system monitor", then select the upgrade process to kill it.
    Or follow the solutions given here: https://unix.stackexchange.com/quest...d-upgr-to-exit

    mainly:
    sudo rm /var/lib/apt/lists/lock
    sudo rm /var/cache/apt/archives/lock
    sudo rm /var/lib/dpkg/lock

  7. #7
    Join Date
    Jul 2005
    Location
    I think I'm here! Maybe?
    Beans
    Hidden!
    Distro
    Xubuntu 22.04 Jammy Jellyfish

    Re: E: waiting for unattended-upgr to exit

    In my opinion the best way to avoid this is to disable the unattended upgrades but set the system to notify you of all available upgrades daily and then carry out the upgrades at a time you choose, not one chosen by the system?

    I always uninstall the package unattended upgrades and do them manually but daily.

  8. #8
    Join Date
    Aug 2007
    Beans
    125

    Re: E: waiting for unattended-upgr to exit

    Quote Originally Posted by dino99 View Post
    From the icon menu, select "system monitor", then select the upgrade process to kill it.
    Or follow the solutions given here: https://unix.stackexchange.com/quest...d-upgr-to-exit
    mainly:
    sudo rm /var/lib/apt/lists/lock
    sudo rm /var/cache/apt/archives/lock
    sudo rm /var/lib/dpkg/lock
    Is it safe to do those commands? Maybe the error message should include a button to do it? So the user can continue and the problem is really solved.
    Last edited by ianp5a; December 30th, 2020 at 02:11 PM.

  9. #9
    Join Date
    Jan 2005
    Beans
    72

    Re: E: waiting for unattended-upgr to exit

    I would just reboot rather than run the rm's.

  10. #10
    Join Date
    Aug 2011
    Location
    52.5° N 6.4° E
    Beans
    6,824
    Distro
    Xubuntu 22.04 Jammy Jellyfish

    Re: E: waiting for unattended-upgr to exit

    Processes can communicated with each other. It's fairly simple on Linux. However, to communicate, the processes (an their developers) have to agree on a communication protocol and as the number of possible interactions increases with the square of the number of processes, this quickly gets problematic. There will be bugs. So to keep things reliable, it's best to keep the number of interactions low. In this case, that means a simple lock. As long as one tool is working with software packages, a different tool is blocked. It's more reliable than giving Gnome Software (or whatever) a button to interupt unattended-upgrades. And there are many more tools dealing with package management.

Page 1 of 2 12 LastLast

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
  •