• Willkommen im Linux Club - dem deutschsprachigen Supportforum für GNU/Linux. Registriere dich kostenlos, um alle Inhalte zu sehen und Fragen zu stellen.

2 package(s) with unknown signatures

frodoooo

Member
Unknown signature /var/cache/apt/archives/jpackage-utils_0%3a1.6.6-1jpp_noarch.rpm: (SHA1) DSA sha1 md5 (GPG) NOT OK (MISSING KEYS: GPG#c431416d)
Unknown signature /var/cache/apt/archives/update-alternatives_0%3a1.8.3-8jpp_noarch.rpm: (SHA1) DSA sha1 md5 (GPG) NOT OK (MISSING KEYS: GPG#c431416d)
E: Error(s) while checking package signatures:
0 unsigned package(s)
2 package(s) with unknown signatures
0 package(s) with illegal/corrupted signatures
E: Handler silently failed

was mache ich dagegen ? diese 2 tauchen immer wieder auf und ich kann nix über synapsis installieren, der bricht immer mit dieser Meldung ab :x
 
OP
F

frodoooo

Member
'apt install rpmkey* --no-checksig'
den habe ich jetzt schon mehrmals versucht, und auch die ganze Installationsanleitung noch einmal durch gegangen aber ich bekomme diese "2" nicht weg :-( habe die ganze Platte voll RPM's liegen aber er installiert se net :(
 

oc2pus

Ultimate Guru
Lesen bildet immer wieder ;)

http://www.jpackage.org/contacts.php
dort das Kapitel: Project GPG key

Code:
 The JPackage Project GPG key can be downloaded here: jpackage.asc

It is recommended to make this key available to RPM; we use it to sign all our packages as well as some other files in the repository (apt-rpm in particular). First, change to the user account you use RPM with (usually root) and optionally download the key.

If your rpm supports the --import option (you might need version 4.1), do this:

    rpm --import /path/to/jpackage.asc 

Or if you didn't download the key:

    rpm --import http://www.jpackage.org/jpackage.asc 

For older versions of RPM, you'll need to use GPG for importing the key. Note that if you're using apt-get, you should import with GPG and RPM (if your RPM supports this, of course). apt-get uses the key from GPG for verifying repository files, whereas RPM may handle it internally for verifying package signatures.

    gpg --import /path/to/jpackage.asc 

Or if you didn't download the key and have Wget, Lynx, curl or lwp-get:

    wget -O- http://www.jpackage.org/jpackage.asc | gpg --import
    lynx -source http://www.jpackage.org/jpackage.asc | gpg --import
    curl http://www.jpackage.org/jpackage.asc | gpg --import
    lwp-get http://www.jpackage.org/jpackage.asc | gpg --import 

The key is also available from public keyservers. Oh, and here's the key fingerprint.

    1F81 C0FB C2B8 22B3 DE12  33A4 5C6C FFF7 C431 416D
 
Oben