Re: gpg key error in unstable

2006-02-10 Thread Andreas Janssen
Hello

L.V.Gandhi ([EMAIL PROTECTED]) wrote:
 On 2/9/06, Andreas Janssen [EMAIL PROTECTED] wrote:
 
 You can get official debian keys from the debian-archive-keyring
 package. Never just download keys from some gpg server just because
 someone tells you some key id, only get the keys from the project
 servers directly, or at least get the key id from there to make sure
 it is the correct key.
 I have both sid and sarge on my dell 600m. In sid I could get
 debian-archive-keyring. But in sarge that is not there. I installed
 apt from bacports in sarge. How to get debian-archive-keyring for
 sarge?

Either you get it from backports.org, or from unstable/testing, or you
download the keys manually from the Debian ftp-master server:

http://ftp-master.debian.org/ziyi_key_2006.asc

best regards
Andreas Janssen

-- 
Andreas Janssen [EMAIL PROTECTED]
PGP-Key-ID: 0xDC801674 ICQ #17079270
Registered Linux User #267976
http://www.andreas-janssen.de/debian-tipps-sarge.html


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Re: gpg key error in unstable

2006-02-09 Thread L.V.Gandhi
I have sarge system. I use other repositories like
http://ftp.nerim.net, http://ftp.debian-unofficial.org,
http://www.backports.org. I upgraded apt to 0.6.43. it needs gpg keys
for all. I went to nerim and saw merillat key. I did
lvgdell600m:~# gpg --armor --export 1F41B907 | apt-key add -
gpg: directory `/root/.gnupg' created
gpg: new configuration file `/root/.gnupg/gpg.conf' created
gpg: WARNING: options in `/root/.gnupg/gpg.conf' are not yet active
during this run
gpg: keyring `/root/.gnupg/secring.gpg' created
gpg: keyring `/root/.gnupg/pubring.gpg' created
gpg: WARNING: nothing exported
gpg: no valid OpenPGP data found.
even then I got warning during apt-get update. then I tried
lvgdell600m:~# gpg --keyserver hkp://wwwkeys.eu.pgp.net --recv-keys 1F41B907
gpg: requesting key 1F41B907 from hkp server wwwkeys.eu.pgp.net
gpg: /root/.gnupg/trustdb.gpg: trustdb created
gpg: key 1F41B907: public key Christian Marillat
[EMAIL PROTECTED] imported
gpg: no ultimately trusted keys found
gpg: Total number processed: 1
gpg:   imported: 1
even now I got warning during apt-get update
what to do?
--
L.V.Gandhi
http://lvgandhi.tripod.com/
linux user No.205042


Re: gpg key error in unstable

2006-02-09 Thread Edward Shornock
On Thu, Feb 09, 2006 at 03:30:40PM +, L.V.Gandhi wrote:
 even then I got warning during apt-get update. then I tried
 lvgdell600m:~# gpg --keyserver hkp://wwwkeys.eu.pgp.net --recv-keys 1F41B907
 gpg: requesting key 1F41B907 from hkp server wwwkeys.eu.pgp.net
 gpg: /root/.gnupg/trustdb.gpg: trustdb created
 gpg: key 1F41B907: public key Christian Marillat
 [EMAIL PROTECTED] imported
 gpg: no ultimately trusted keys found
 gpg: Total number processed: 1
 gpg:   imported: 1
 even now I got warning during apt-get update


Now that you have that key in your keyring, do the following:

gpg --export 1F41B907 |apt-key add -
apt-get update


The errors should stop.


signature.asc
Description: Digital signature


Re: gpg key error in unstable

2006-02-09 Thread Andreas Janssen
Hello

L.V.Gandhi ([EMAIL PROTECTED]) wrote:

 I have sarge system. I use other repositories like
 http://ftp.nerim.net, http://ftp.debian-unofficial.org,
 http://www.backports.org. I upgraded apt to 0.6.43. it needs gpg keys
 for all. I went to nerim and saw merillat key. I did
 lvgdell600m:~# gpg --armor --export 1F41B907 | apt-key add -
 gpg: directory `/root/.gnupg' created
 [...]
 gpg: WARNING: nothing exported

 gpg: no valid OpenPGP data found.
^^^
 even then I got warning during apt-get update. then I tried
 lvgdell600m:~# gpg --keyserver hkp://wwwkeys.eu.pgp.net --recv-keys
 1F41B907 gpg: requesting key 1F41B907 from hkp server
 wwwkeys.eu.pgp.net gpg: /root/.gnupg/trustdb.gpg: trustdb created
 gpg: key 1F41B907: public key Christian Marillat
 [EMAIL PROTECTED] imported
 gpg: no ultimately trusted keys found
 gpg: Total number processed: 1
 gpg:   imported: 1
 even now I got warning during apt-get update
 what to do?

The first time you tried to export the key from gpg to apt, but you
didn't have the key in your gpg keyring. The second time, you imported
the key to gpg, but didn't feed it to apt.

best regards
Andreas Janssen

-- 
Andreas Janssen [EMAIL PROTECTED]
PGP-Key-ID: 0xDC801674 ICQ #17079270
Registered Linux User #267976
http://www.andreas-janssen.de/debian-tipps-sarge.html


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Re: gpg key error in unstable

2006-02-09 Thread L.V.Gandhi
On 2/9/06, Andreas Janssen [EMAIL PROTECTED] wrote:

 The first time you tried to export the key from gpg to apt, but you
 didn't have the key in your gpg keyring. The second time, you imported
 the key to gpg, but didn't feed it to apt.

Thanks Andreas. Clear explanation.
How to get keys for various sites?
--
L.V.Gandhi
http://lvgandhi.tripod.com/
linux user No.205042


Re: gpg key error in unstable

2006-02-09 Thread L.V.Gandhi
On 2/9/06, Andreas Janssen [EMAIL PROTECTED] wrote:

 You can get official debian keys from the debian-archive-keyring
 package. Never just download keys from some gpg server just because
 someone tells you some key id, only get the keys from the project
 servers directly, or at least get the key id from there to make sure it
 is the correct key.
I have both sid and sarge on my dell 600m. In sid I could get
debian-archive-keyring. But in sarge that is not there. I installed
apt from bacports in sarge. How to get debian-archive-keyring for
sarge?
--
L.V.Gandhi
http://lvgandhi.tripod.com/
linux user No.205042


Re: gpg key error in unstable

2006-02-09 Thread Andreas Janssen
Hello

L.V.Gandhi ([EMAIL PROTECTED]) wrote:

 On 2/9/06, Andreas Janssen [EMAIL PROTECTED] wrote:
 
 The first time you tried to export the key from gpg to apt, but you
 didn't have the key in your gpg keyring. The second time, you
 imported the key to gpg, but didn't feed it to apt.
 
 Thanks Andreas. Clear explanation.
 How to get keys for various sites?

You can get official debian keys from the debian-archive-keyring
package. Never just download keys from some gpg server just because
someone tells you some key id, only get the keys from the project
servers directly, or at least get the key id from there to make sure it
is the correct key.

best regards
Andreas Janssen

-- 
Andreas Janssen [EMAIL PROTECTED]
PGP-Key-ID: 0xDC801674 ICQ #17079270
Registered Linux User #267976
http://www.andreas-janssen.de/debian-tipps-sarge.html


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Re: gpg key error in unstable

2006-02-05 Thread Andreas Janssen
Hello

L.V.Gandhi ([EMAIL PROTECTED]) wrote:

 [...]
 lvgdell600m:~# apt-key update
 [GPG keys succesfully imported]
 
 However after this I tried to install adept, I got error once again as
 below. vgdell600m:~# apt-get install adept
 [...]
 WARNING: The following packages cannot be authenticated!
   libtdb1 debtags adept
 Install these packages without verification [y/N]?
 Where am I going wrong?

Did you run apt-get update? Also check where the package comes from
(apt-cache policy debtags adept libtdb1).

best regards
Andreas Janssen

-- 
Andreas Janssen [EMAIL PROTECTED]
PGP-Key-ID: 0xDC801674 ICQ #17079270
Registered Linux User #267976
http://www.andreas-janssen.de/debian-tipps-sarge.html


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Re: gpg key error in unstable

2006-02-05 Thread L.V.Gandhi
On 2/5/06, Andreas Janssen [EMAIL PROTECTED] wrote:

 Did you run apt-get update?

Thanks. That hit the point.

Also check where the package comes from
 (apt-cache policy debtags adept libtdb1).
lvgdell600m:~# apt-cache policy debtags adept libtdb1
debtags:
  Installed: 1.5.2+b2
  Candidate: 1.5.2+b2
  Version table:
 *** 1.5.2+b2 0
500 http://ftp.de.debian.org unstable/main Packages
100 /var/lib/dpkg/status
adept:
  Installed: 1.88.4
  Candidate: 1.88.4
  Version table:
 *** 1.88.4 0
500 http://ftp.de.debian.org unstable/main Packages
100 /var/lib/dpkg/status
libtdb1:
  Installed: 1.0.6-13
  Candidate: 1.0.6-13
  Version table:
 *** 1.0.6-13 0
500 http://ftp.de.debian.org unstable/main Packages
100 /var/lib/dpkg/status
--
L.V.Gandhi
http://lvgandhi.tripod.com/
linux user No.205042


gpg key error in unstable

2006-02-04 Thread L.V.Gandhi
I have dell inspiron 600m. today I have loaded base sarge and upgraded
to unstable. I wanted to avoid the error
Install these packages without verification.
Hence as per info in debian-admin site I did as follows.

apt-get install gnupg

Once that's done you can either download the public key by running:

[EMAIL PROTECTED]:~# gpg --keyserver keyring.debian.org --recv 4F368D5D
secring.gpg  is shown as 0 byte file

[EMAIL PROTECTED]:~# cat ziyi_key_2006.asc | gpg --import

I tried this also. Still I get error as mentioned above.
What should I do?
--
L.V.Gandhi
http://lvgandhi.tripod.com/
linux user No.205042


Re: gpg key error in unstable

2006-02-04 Thread Andreas Janssen
Hello

L.V.Gandhi ([EMAIL PROTECTED]) wrote:

 I have dell inspiron 600m. today I have loaded base sarge and upgraded
 to unstable. I wanted to avoid the error
 Install these packages without verification.
 Hence as per info in debian-admin site I did as follows.
 
 apt-get install gnupg
 
 Once that's done you can either download the public key by running:
 
 [EMAIL PROTECTED]:~# gpg --keyserver keyring.debian.org --recv 4F368D5D
 secring.gpg  is shown as 0 byte file
 
 [EMAIL PROTECTED]:~# cat ziyi_key_2006.asc | gpg --import
 
 I tried this also. Still I get error as mentioned above.
 What should I do?

You need to run apt-key, e.g.

apt-key add ziyi_key_2006.asc

Of course this only works /after/ you installed apt from
testing/ustable. You can also install the debian-archive-keyring
package and run `apt-key update`.

best regards
Andreas Janssen

-- 
Andreas Janssen [EMAIL PROTECTED]
PGP-Key-ID: 0xDC801674 ICQ #17079270
Registered Linux User #267976
http://www.andreas-janssen.de/debian-tipps-sarge.html


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Re: gpg key error in unstable

2006-02-04 Thread L.V.Gandhi
On 2/4/06, Andreas Janssen [EMAIL PROTECTED] wrote:
 Hello

 L.V.Gandhi ([EMAIL PROTECTED]) wrote:

  I have dell inspiron 600m. today I have loaded base sarge and upgraded
  to unstable. I wanted to avoid the error
  Install these packages without verification.
  Hence as per info in debian-admin site I did as follows.
 
  apt-get install gnupg
 
  Once that's done you can either download the public key by running:
 
  [EMAIL PROTECTED]:~# gpg --keyserver keyring.debian.org --recv 4F368D5D
  secring.gpg  is shown as 0 byte file
 
  [EMAIL PROTECTED]:~# cat ziyi_key_2006.asc | gpg --import
 
  I tried this also. Still I get error as mentioned above.
  What should I do?

 You need to run apt-key, e.g.

 apt-key add ziyi_key_2006.asc

I have done this.
I got
 lvgdell600m:~# apt-key add /home/lvgandhi/ziyi_key_2006.asc
OK
After this also I got error message.

 Of course this only works /after/ you installed apt from
 testing/ustable. You can also install the debian-archive-keyring
 package and run `apt-key update`.
Hence, I did the above also. output as below.
lvgdell600m:~# apt-get install debian-archive-keyring
Reading package lists... Done
Building dependency tree... Done
The following NEW packages will be installed
  debian-archive-keyring
0 upgraded, 1 newly installed, 0 to remove and 0 not upgraded.
Need to get 6050B of archives.
After unpacking 53.2kB of additional disk space will be used.
WARNING: The following packages cannot be authenticated!
  debian-archive-keyring
Install these packages without verification [y/N]? y
Get: 1 http://ftp.de.debian.org unstable/main debian-archive-keyring
2006.01.18 [6050B]
Fetched 6050B in 0s (8054B/s)
Selecting previously deselected package debian-archive-keyring.
(Reading database ... 85565 files and directories currently installed.)
Unpacking debian-archive-keyring (from
.../debian-archive-keyring_2006.01.18_all.deb) ...
Setting up debian-archive-keyring (2006.01.18) ...
gpg: key 1DB114E0: Debian Archive Automatic Signing Key (2004)
[EMAIL PROTECTED] not changed
gpg: key 4F368D5D: Debian Archive Automatic Signing Key (2005)
[EMAIL PROTECTED] not changed
gpg: key B5F5BBED: Debian AMD64 Archive Key
debian-amd64@lists.debian.org not changed
gpg: key 2D230C5F: Debian Archive Automatic Signing Key (2006)
[EMAIL PROTECTED] not changed
gpg: Total number processed: 4
gpg:  unchanged: 4
gpg: /etc/apt/trustdb.gpg: trustdb created

lvgdell600m:~# apt-key update
gpg: key 1DB114E0: Debian Archive Automatic Signing Key (2004)
[EMAIL PROTECTED] not changed
gpg: key 4F368D5D: Debian Archive Automatic Signing Key (2005)
[EMAIL PROTECTED] not changed
gpg: key B5F5BBED: Debian AMD64 Archive Key
debian-amd64@lists.debian.org not changed
gpg: key 2D230C5F: Debian Archive Automatic Signing Key (2006)
[EMAIL PROTECTED] not changed
gpg: Total number processed: 4
gpg:  unchanged: 4

However after this I tried to install adept, I got error once again as below.
vgdell600m:~# apt-get install adept
Reading package lists... Done
Building dependency tree... Done
The following extra packages will be installed:
  debtags libtdb1
Recommended packages:
  libqt-perl
The following NEW packages will be installed
  adept debtags libtdb1
0 upgraded, 3 newly installed, 0 to remove and 0 not upgraded.
Need to get 3126kB of archives.
After unpacking 8086kB of additional disk space will be used.
Do you want to continue [Y/n]? y
WARNING: The following packages cannot be authenticated!
  libtdb1 debtags adept
Install these packages without verification [y/N]?
Where am I going wrong?
Any more info needed?

--
L.V.Gandhi
http://lvgandhi.tripod.com/
linux user No.205042