6

I met this error while updating.I read questions and answers about this problem , but the point is signing key. It doesn't return signing key!

Get:1 http://archive.canonical.com lucid Release.gpg [198B]
Ign http://archive.canonical.com/ lucid/partner Translation-en_US
                ...
                ...
                ...  
Get:24 http://archive.ubuntu.com lucid-security/main Packages [380kB]          
Get:25 http://archive.ubuntu.com lucid-security/restricted Packages [14B]      
Get:26 http://archive.ubuntu.com lucid-security/multiverse Packages [4,556B]   
Get:27 http://archive.ubuntu.com lucid-security/main Sources [118kB]           
Get:28 http://archive.ubuntu.com lucid-security/restricted Sources [14B]       
Get:29 http://archive.ubuntu.com lucid-security/universe Packages [125kB]      
Get:30 http://archive.ubuntu.com lucid-security/universe Sources [34.5kB]      
Fetched 12.8MB in 10min 33s (20.3kB/s)                                         
Reading package lists... Done
W: GPG error: http://archive.canonical.com lucid Release: Unknown error executing gpgv
W: GPG error: http://archive.ubuntu.com lucid Release: Unknown error executing gpgv
W: GPG error: http://archive.ubuntu.com lucid-updates Release: Unknown error executing gpgv
W: GPG error: http://archive.ubuntu.com lucid-security Release: Unknown error executing gpgv
Mochan
  • 1,688
mohammads
  • 2,692

4 Answers4

2

Finally , fixed .

I searched in /lib and found an other "libreadline.so.6" and replaced it and problem fixed.

Thank you for your attention.

mohammads
  • 2,692
  • 1
    A similar situation to the problem you experienced has arisen in this question, but I'm having trouble understanding how to apply this solution. Where exactly was the file that you replaced, and where exactly was the file you replaced it with? Thanks for any more details you can provide. – Eliah Kagan Dec 27 '12 at 03:50
0

Try sudo apt-get clean and then run the update command again.

LnxSlck
  • 12,256
  • I tried sudo apt-get clean and then run the update command again ,but it doesn't changed .When I enter "gpg" in terminal , it returns:"gpg: symbol lookup error: /usr/local lib/libreadline.so.6: undefined symbol: PC".!? – mohammads Mar 07 '12 at 12:50
  • It happened when I installed readline6.2.2 for python2.7.2!! – mohammads Mar 07 '12 at 13:01
  • Try this:sudo apt-get clean cd /var/lib/apt sudo mv lists lists.old sudo mkdir -p lists/partial sudo apt-get clean sudo apt-get update – LnxSlck Mar 09 '12 at 01:01
  • No change...!!? – mohammads Mar 10 '12 at 03:03
0

well... same problem here (ubuntu 12.04 , 64bit). This worked for me:

sudo mv /usr/local/lib/libreadline.so.6 /usr/local/lib/libreadline_problem.so.6
sudo mv /usr/local/lib/libreadline.so.6.2 /usr/local/lib/libreadline_problem.so.6.2

sudo ln -s /lib/x86_64-linux-gnu/libreadline.so.6 /usr/local/lib/libreadline.so.6
sudo ln -s /lib/x86_64-linux-gnu/libreadline.so.6.2 /usr/local/lib/libreadline.so.6.2

sudo  apt-get update

:)

guntbert
  • 13,134
hubble
  • 1
0

Please run the following command and add the key manually:

gpg --keyserver hkp://keyserver.ubuntu.com:80 --recv KEYNAME
IT UPT
  • 1