Page 1 of 2

Update errors through apt-get

PostPosted: Thu Jul 16, 2009 10:58 pm
by archeryguru2000
Hello all, just install Ultimate Edition earlier today. I've been using Ubuntu for a couple of years now, but decided to give this "fancier" version a try. :D Anyway, I ran an update/upgrade just now and received a couple of errors. The main concern that I have are the GPG key errors.

Code: Select all
W: A error occurred during the signature verification. The repository is not updated and the previous index files will be used.GPG error: http://ppa.launchpad.net intrepid Release: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY 778978B00F7992B0

W: A error occurred during the signature verification. The repository is not updated and the previous index files will be used.GPG error: http://ppa.launchpad.net intrepid Release: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY 60D11217247D1CFF

W: GPG error: http://ppa.launchpad.net jaunty Release: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY 632D16BB0C713DA6
W: A error occurred during the signature verification. The repository is not updated and the previous index files will be used.GPG error: http://ppa.launchpad.net intrepid Release: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY 43C0AFF0D7FAE680

W: A error occurred during the signature verification. The repository is not updated and the previous index files will be used.GPG error: http://wine.budgetdedicated.com intrepid Release: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY 58403026387EE263

W: Failed to fetch http://ppa.launchpad.net/project-neon/ubuntu/dists/intrepid/Release 

W: Failed to fetch http://ppa.launchpad.net/openoffice-pkgs/ubuntu/dists/intrepid/Release 

W: Failed to fetch http://ppa.launchpad.net/team-xbmc-intrepid/ubuntu/dists/intrepid/Release 

W: Failed to fetch http://repoubuntusoftware.info/dists/intrepid/all/binary-amd64/Packages.gz  404 Not Found

W: Failed to fetch http://ppa.launchpad.net/googlegadgets/ubuntu/dists/intrepid/main/binary-amd64/Packages.gz  404 Not Found

W: Failed to fetch http://wine.budgetdedicated.com/apt/dists/intrepid/Release 

W: Some index files failed to download, they have been ignored, or old ones used instead.
W: You may want to run apt-get update to correct these problems


Can anybody assist in helping my get the proper keys?

Thanks,
~~archery~~

Re: Update errors through apt-get

PostPosted: Thu Jul 16, 2009 11:14 pm
by kiwinsn
Hi archeryguru....Welcome to Ultimate Edition.

A move you will not regret....we are all friends here and the others are very knowledgable :D

For your GPG problem, check this out:

viewtopic.php?f=7&t=2720&start=0

Cheers

Re: Update errors through apt-get

PostPosted: Thu Jul 16, 2009 11:39 pm
by Cell
It says your running 2.3 Archerygeru....Are you?

Re: Update errors through apt-get

PostPosted: Fri Jul 17, 2009 9:04 am
by archeryguru2000
Rock on! Now all of my GPG errors are fixed. I still have a couple of 404's left to deal with... but I believe they refer to a connection issue. Either the web-site is down, under construction, or may not exist anymore. However, I'm glad to have those keys fixed. Thanks a lot kiwinsn!

And as for your question Cell:
Cell wrote:It says your running 2.3 archeryguru....Are you?

I must haved marked the wrong box... or maybe that's the default setting... er something. Sorry for the confusion. I'm running (at least I think) version 2.1.

Thanks again,
~~archery~~

Re: Update errors through apt-get

PostPosted: Fri Jul 17, 2009 9:42 am
by kiwinsn
Very soon, my friend, all your worries (I believe) will be over....with this flavour anyway....

TheeMahn is unleashing his latest Ultimatix on the unsuspecting world...soon.....very soon.....

If you install Ultimate or, as I believe, any Ubuntu flavour, then run Ultimatix and select items through the various menus, it will install programs, restricted extras, games, codecs, your latest bathroom, fill your beer fridge and other stuff that will make you go....Whoa, there....am I only a mere user now?...Do I really only have to push my power button and it all works???..what happened to installing things with the inherited problems...This means that GPG errors may very well be a thing of the past....for those enlightened enough to join the Ultimate Edition team anyway....for the others ...yah boo, sucks to you....although I believe Ultimatix is available for all and sundry anyway...

The skill this one Mahn has continually makes me shake my head and say WTF untold times...he is that clever.

Be patient, oh grasshopper, and we will all benefit from the unselfish, talented guy...

And the support you have in this forum is second to none...I know sod all...but can occasionally impart words of advice and wisdom....but nothing compared to others residing here....

Cheers

Re: Update errors through apt-get

PostPosted: Fri Jul 31, 2009 11:44 am
by slingshotsuicide
Hey, got a slightly different update prob here. When I apt-get update from CLI, I'm getting 404s for repos not in my sources list. Has this got something to do with ultimatix? Does it store repos somewhere else, and if so, why would apt be checking them?

Re: Update errors through apt-get

PostPosted: Fri Jul 31, 2009 11:50 am
by Stoner
Open a terminal and run
Code: Select all
sudo gedit /etc/apt/sources.list
check the list for those repos coming up with 404s. If they are not there then I have no idea what the problem is. If they are then just comment them out with a # and then run
Code: Select all
sudo apt-get update

Re: Update errors through apt-get

PostPosted: Fri Jul 31, 2009 12:10 pm
by Admin-Amir
Hi to you all.

the best FIX for all the key's and the 404 is just make at your home document in the name os errors.txt,
Copy/Paste the whole "errors" to a text file called "errors.txt" then run the following command in the terminal:

Code: Select all
for i in `cat errors.txt | grep PUBKEY | awk -F "PUBKEY" '{print $2}'` ; do gpg --keyserver keyserver.ubuntu.com --recv-keys $i ; gpg --export --armor $i | sudo apt-key add - ; done

Re: Update errors through apt-get

PostPosted: Fri Jul 31, 2009 12:16 pm
by slingshotsuicide
Thank you both, but I had already commented out the ones that were in sources.list, That's what's got me stumped as well. I'm making note of the "errors.txt" work around, but I'm not ready to use it yet since my greater concern is about why apt is checking repos that aren't in sources.list.

Maybe I should have started a new thread about this quirky behavior instead. Guess I'll wait awhile for now.

Re: Update errors through apt-get

PostPosted: Fri Jul 31, 2009 12:20 pm
by Stoner
Can you post your sources list and a screenshot of your error?