Page 1 of 6 123 ... LastLast
Results 1 to 10 of 53

Thread: Package Manager & Update Manager problems

  1. #1
    Join Date
    Aug 2006
    Location
    gypsy encampment
    Beans
    608
    Distro
    Lubuntu 18.04 Bionic Beaver

    Package Manager & Update Manager problems

    While updating using Update Manager, my wireless connection dropped out. Attempted Update Manager again, no go. Same for apt-get update.

    In Terminal:

    Code:
    Fetched 1,576 B in 14s (111 B/s)                                               
    Reading package lists... Error!
    W: A error occurred during the signature verification. The repository is not updated and the previous index files will be used. GPG error: http://security.ubuntu.com precise-security Release: The following signatures were invalid: BADSIG 40976EAF437D05B5 Ubuntu Archive Automatic Signing Key <ftpmaster@ubuntu.com>
    
    W: GPG error: http://planet76.com ./ Release: The following signatures were invalid: BADSIG 176A5C84ED67C9ED System76 Development (System76 Development Package Signing Key) <dev@system76.com>
    W: GPG error: http://archive.canonical.com precise Release: The following signatures were invalid: BADSIG 40976EAF437D05B5 Ubuntu Archive Automatic Signing Key <ftpmaster@ubuntu.com>
    W: GPG error: http://ppa.launchpad.net precise Release: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY EFD5FA852F20733F
    W: A error occurred during the signature verification. The repository is not updated and the previous index files will be used. GPG error: http://extras.ubuntu.com precise Release: The following signatures were invalid: BADSIG 16126D3A3E5C1192 Ubuntu Extras Archive Automatic Signing Key <ftpmaster@ubuntu.com>
    
    W: A error occurred during the signature verification. The repository is not updated and the previous index files will be used. GPG error: http://us.archive.ubuntu.com precise Release: The following signatures were invalid: BADSIG 40976EAF437D05B5 Ubuntu Archive Automatic Signing Key <ftpmaster@ubuntu.com>
    
    W: A error occurred during the signature verification. The repository is not updated and the previous index files will be used. GPG error: http://us.archive.ubuntu.com precise-updates Release: The following signatures were invalid: BADSIG 40976EAF437D05B5 Ubuntu Archive Automatic Signing Key <ftpmaster@ubuntu.com>
    
    W: A error occurred during the signature verification. The repository is not updated and the previous index files will be used. GPG error: http://us.archive.ubuntu.com precise-backports Release: The following signatures were invalid: BADSIG 40976EAF437D05B5 Ubuntu Archive Automatic Signing Key <ftpmaster@ubuntu.com>
    
    W: Failed to fetch http://security.ubuntu.com/ubuntu/dists/precise-security/Release  
    
    W: Failed to fetch http://us.archive.ubuntu.com/ubuntu/dists/precise/Release  
    
    W: Failed to fetch http://extras.ubuntu.com/ubuntu/dists/precise/Release  
    
    W: Failed to fetch http://us.archive.ubuntu.com/ubuntu/dists/precise-updates/Release  
    
    W: Failed to fetch http://us.archive.ubuntu.com/ubuntu/dists/precise-backports/Release  
    
    W: Some index files failed to download. They have been ignored, or old ones used instead.
    E: Encountered a section with no Package: header
    E: Problem with MergeList /var/lib/apt/lists/us.archive.ubuntu.com_ubuntu_dists_precise-updates_main_binary-amd64_Packages
    E: The package lists or status file could not be parsed or opened.
    I tried to report a bug using ubuntu-bug package-manager, but that didn't work either (unable to determine package)

    I'm at a loss what to do next, so help will be appreciated.
    Reminder: If you start a thread asking for help with a problem, please remember to use the Thread Tools to mark the issue as "SOLVED" once you have a solution. This will help other people with the same problem when they search for answers.

  2. #2
    Join Date
    Jul 2011
    Beans
    3,037
    Distro
    Ubuntu 12.04 Precise Pangolin

    Re: Package Manager & Update Manager problems

    Does executing these commands help?

    cd /var/lib/apt
    sudo mv lists lists.old
    sudo mkdir -p lists/partial
    sudo apt-get update

    This will rebuild the cache.

    If it doesn't help, this forum post has additional suggestions:

    http://ubuntuforums.org/showthread.php?t=1869890

  3. #3
    Join Date
    Sep 2009
    Beans
    8,874
    Distro
    Ubuntu Development Release

    Re: Package Manager & Update Manager problems

    I would start with grabbing the missing keys, here is the first missing one add the key to the code per missing key.

    Code:
    sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 176A5C84ED67C9ED
    Do this with every missing key then run a update to see if you have all set.

    The link from above suggests this as well as some other methods check out drs305's posts.
    Last edited by wilee-nilee; May 20th, 2012 at 09:55 AM.

  4. #4
    Join Date
    Aug 2006
    Location
    gypsy encampment
    Beans
    608
    Distro
    Lubuntu 18.04 Bionic Beaver

    Re: Package Manager & Update Manager problems

    OK, I've found part of my problem. The wireless internet provider where I'm staying kicks you off-line if you use too much data (like updates). My other data connection is through my Verizon cell phone, which currently seems to be throttled down to the point of unusability for updates. I guess I'll have to go somewhere where I can get a decent data connection before I can do anything more. I'll check back when I can get this sorted.

    Thanks for the input wilee-nilee & 2F4U.
    Reminder: If you start a thread asking for help with a problem, please remember to use the Thread Tools to mark the issue as "SOLVED" once you have a solution. This will help other people with the same problem when they search for answers.

  5. #5
    Join Date
    Aug 2006
    Location
    gypsy encampment
    Beans
    608
    Distro
    Lubuntu 18.04 Bionic Beaver

    Re: Package Manager & Update Manager problems

    Before packing everything up in search of a decent data connection, I got the phone number for tech support for the wireless network I'm using. I explained that I use Ubuntu Linux, that I'm having trouble completing an update because I keep getting kicked off the wireless system and could he please help. I gave him my MAC address and he reset the wireless system from his end as well as removing the requirement for me to log-in to the wireless system.

    I tried grabbing the missing keys as wilee-nilee suggested,but there must have been more wrong than that would fix. So I rebuilt the cache as 2F4U suggested and that seems to have sorted everything.

    This is why I've used Ubuntu for years...the community is just unsurpassed in helpfulness.

    Thank you for your help!
    Reminder: If you start a thread asking for help with a problem, please remember to use the Thread Tools to mark the issue as "SOLVED" once you have a solution. This will help other people with the same problem when they search for answers.

  6. #6
    Join Date
    Feb 2011
    Location
    Las Vegas
    Beans
    16

    Re: Package Manager & Update Manager problems

    Quote Originally Posted by 2F4U View Post
    Does executing these commands help?

    cd /var/lib/apt
    sudo mv lists lists.old
    sudo mkdir -p lists/partial
    sudo apt-get update

    This will rebuild the cache.

    If it doesn't help, this forum post has additional suggestions:

    http://ubuntuforums.org/showthread.php?t=1869890
    Thanks 2F4U! I had the same problem and this fixed it.

  7. #7
    Join Date
    Dec 2011
    Beans
    41

    Re: Package Manager & Update Manager problems

    Hi i am facing the same problem on ubuntu 12.04

    W: GPG error: http://repository.spotify.com stable InRelease: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY 082CCEDF94558F59
    W: GPG error: http://kz.archive.ubuntu.com precise Release: The following signatures were invalid: BADSIG 40976EAF437D05B5 Ubuntu Archive Automatic Signing Key <ftpmaster@ubuntu.com>

    i did this
    cd /var/lib/apt
    sudo mv lists lists.old
    sudo mkdir -p lists/partial
    sudo apt-get update

    and this
    sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 082CCEDF94558F59 40976EAF437D05B5
    and got
    Executing: gpg --ignore-time-conflict --no-options --no-default-keyring --secret-keyring /tmp/tmp.aaN7ANuRBd --trustdb-name /etc/apt/trustdb.gpg --keyring /etc/apt/trusted.gpg --primary-keyring /etc/apt/trusted.gpg --keyserver keyserver.ubuntu.com --recv-keys 082CCEDF94558F59 40976EAF437D05B5
    gpg: requesting key 94558F59 from hkp server keyserver.ubuntu.com
    gpg: requesting key 437D05B5 from hkp server keyserver.ubuntu.com
    gpgkeys: key 082CCEDF94558F59 not found on keyserver
    gpgkeys: key 40976EAF437D05B5 not found on keyserver
    gpg: no valid OpenPGP data found.
    gpg: Total number processed: 0


    Why can't it find the key?

  8. #8
    Join Date
    Aug 2012
    Beans
    4

    Re: Package Manager & Update Manager problems

    hey folks,

    I had the same bad-sig error, and this bunch of commands helped get my update manager up and going... hth...

    sudo -i
    apt-get clean
    cd /var/lib/apt
    mv lists lists.old
    mkdir -p lists/partial
    apt-get clean
    apt-get update

    -abhi
    P.S: a previous comment already had the third command onwards, but that was still throwing back the error... a clean helped and then everything got back to normal...
    Last edited by abhicr; August 5th, 2012 at 08:30 AM. Reason: split the commands from single line.

  9. #9
    Join Date
    Dec 2011
    Beans
    41

    Re: Package Manager & Update Manager problems

    thank you, did everything above


    GPG error: http://repository.spotify.com stable InRelease: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY 082CCEDF94558F59
    W: GPG error: http://kz.archive.ubuntu.com precise Release: The following signatures were invalid: BADSIG 40976EAF437D05B5 Ubuntu Archive Automatic Signing Key <ftpmaster@ubuntu.com>
    W: Failed to fetch http://archive.canonical.com/ubuntu/...amd64/Packages Bad header line

    W: Failed to fetch http://archive.canonical.com/ubuntu/...-i386/Packages Bad header line

    W: Failed to fetch gzip:/var/lib/apt/lists/partial/security.ubuntu.com_ubuntu_dists_precise-security_universe_source_Sources Hash Sum mismatch

    W: Failed to fetch gzip:/var/lib/apt/lists/partial/us.archive.ubuntu.com_ubuntu_dists_oneiric-proposed_main_binary-amd64_Packages Hash Sum mismatch

    E: Some index files failed to download. They have been ignored, or old ones used instead.

  10. #10
    Join Date
    Oct 2007
    Location
    Aurora, CO
    Beans
    2,564
    Distro
    Ubuntu

    Re: Package Manager & Update Manager problems

    Quote Originally Posted by teriyaki-89 View Post
    thank you, did everything above


    GPG error: http://repository.spotify.com stable InRelease: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY 082CCEDF94558F59
    W: GPG error: http://kz.archive.ubuntu.com precise Release: The following signatures were invalid: BADSIG 40976EAF437D05B5 Ubuntu Archive Automatic Signing Key <ftpmaster@ubuntu.com>
    W: Failed to fetch http://archive.canonical.com/ubuntu/...amd64/Packages Bad header line

    W: Failed to fetch http://archive.canonical.com/ubuntu/...-i386/Packages Bad header line

    W: Failed to fetch gzip:/var/lib/apt/lists/partial/security.ubuntu.com_ubuntu_dists_precise-security_universe_source_Sources Hash Sum mismatch

    W: Failed to fetch gzip:/var/lib/apt/lists/partial/us.archive.ubuntu.com_ubuntu_dists_oneiric-proposed_main_binary-amd64_Packages Hash Sum mismatch

    E: Some index files failed to download. They have been ignored, or old ones used instead.
    For the bad-sig problem, you need to adjust the key command to match the key you need. In your case, the command would be:

    Code:
    sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 94558F59
    For the other problems, I would recommend running all of the above commands again:

    Code:
    sudo apt-get clean
    cd /var/lib/apt
    sudo mv lists lists.old
    sudo mkdir -p lists/partial
    sudo apt-get update
    (note that using "sudo" before each command is slightly safer, and preferable. You'll only need to type your password once anyway.)
    Ian Santopietro - System76 Technical Support.
    Open a Support Ticket!
    Ask a Sales Question!

Page 1 of 6 123 ... 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
  •