Post new topic Reply to topic  [ 5 posts ] 
Author Message
 Post subject: still getting BADSIG 81D820A9BB7A1A83 on update eb3
PostPosted: Wed Jul 21, 2010 12:37 am 
Offline

Joined: Sun Jul 18, 2010 1:16 pm
Posts: 16
eeePC model: 4g non-surf (701)
Aurora version: Base 3.0
Dear Aurorans,

Please help: having followed the advice given in several topics here
Code:
wget -q http://eeebuntu.org/Eeebuntu.key | sudo apt-key add Eeebuntu.key


and receiving the response:

Quote:
OK


I STILL get the bad key response.

I look forward to further advice,

Thanks,

simon


Top
 Profile E-mail  
 
 Post subject: Re: still getting BADSIG 81D820A9BB7A1A83 on update eb3
PostPosted: Wed Jul 21, 2010 6:46 am 
Offline

Joined: Sun Jul 18, 2010 1:16 pm
Posts: 16
eeePC model: 4g non-surf (701)
Aurora version: Base 3.0
Eeebuntu.key has been added to File Browser... and on double click tells me:

Quote:
Key Imported
Imported a key for
Inixsis Development Team
<admin@inixsys.com>
(GPG key for Repositories)


... which sounds encouraging...

Is the problem that the key has not been assigned?

Best,
Simon


Top
 Profile E-mail  
 
 Post subject: BADSIG 81D820A9BB7A1A83 on update eb3 [SOLVED]
PostPosted: Fri Jul 23, 2010 12:19 am 
Offline

Joined: Sun Jul 18, 2010 1:16 pm
Posts: 16
eeePC model: 4g non-surf (701)
Aurora version: Base 3.0
System>Administration>Software Sources>Authentication>Import Key ... browse to location of key.


Top
 Profile E-mail  
 
 Post subject: Re: still getting BADSIG 81D820A9BB7A1A83 on update eb3
PostPosted: Fri Jul 23, 2010 1:50 am 
Offline

Joined: Wed Jul 21, 2010 7:55 am
Posts: 37
eeePC model: 901
Aurora version: Beta 4.0
Remeber that you have to do a "aptitude update" or click on Reload in Synaptic after adding keys. If you add the key and then immediately do "aptitude install latestcoolappforaurora" you still get a GPG key error.


Top
 Profile E-mail  
 
 Post subject: Re: still getting BADSIG 81D820A9BB7A1A83 on update eb3
PostPosted: Fri Jul 23, 2010 2:17 am 
Offline

Joined: Wed Jul 21, 2010 7:55 am
Posts: 37
eeePC model: 901
Aurora version: Beta 4.0
Also the better form for adding the key is:
Code:
wget -O - http://eeebuntu.org/Eeebuntu.key | sudo apt-key add -


In your example wget saved the key as a file to the hard drive and apt-key then read the file off the drive rather than any information being passed through the pipe (|)

The " - " in about commands indicate stdout and stdin and the pipe takes the stdout from wget and passes it along to stdin of apt-key which is where it expects to read from as you gave it - instead of a filename.

Code:
wget    |  apt-key
  \          /
   -> file ->

The pipe above isn't actually used at all, the data is written to a file first and then separately read from that file.

Code:
wget -> |  -> apt-key

The data gets passed directly through the pipe from one command to the other with no intermediate file required (ignoring the fact that strictly speaking a pipe is also a file :D )


Top
 Profile E-mail  
 
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 5 posts ] 


Who is online

Users browsing this forum: No registered users and 1 guest


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Search for:
Jump to:  
cron