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

Fehler bei option --no-checksig

borgg

Newbie
Hallo,

habe den Multimedia-Guide von Taki befolgt. Bei folgender Zeile:

taki schrieb:
Code:
apt-get update && apt-get --no-checksig install rpmkeys*

bricht er aber ab...

Code:
...
Hit ftp://ftp.gwdg.de SuSE/10.0-i386/rpmkeys release
Hit ftp://mirrors.mathematik.uni-bielefeld.de SuSE/10.0-i386/rpmkeys pkglist
Hit ftp://ftp.gwdg.de SuSE/10.0-i386/packman-i686 pkglist
Hit ftp://ftp.gwdg.de SuSE/10.0-i386/packman-i686 release
Hit ftp://mirrors.mathematik.uni-bielefeld.de SuSE/10.0-i386/rpmkeys release
Hit ftp://ftp.gwdg.de SuSE/10.0-i386/packman pkglist
Hit ftp://ftp.gwdg.de SuSE/10.0-i386/packman release
Reading Package Lists... Done
Building Dependency Tree... Done
E: Command line option --no-checksig is not understood

Also eigentlich kann man da doch nix falsch machen. Im man zu apt-get hab ich diese Option auch nicht gefunden.

(Suse 10.0DVD GM/eval-download-version)

Hat da jemand eine Idee?
 

flo41

Hacker
ich würde es mal mit
Code:
apt update && apt install rpmkeys* --no-checksig
probieren ... so klappt es bei mir immer ^^
 
OP
B

borgg

Newbie
Danke so geht es. Und kannst du einem apt-noob auch erklären warum apt-get nicht geht oder warum Taki in seinem how-to apt-get schreibt? Ist das ein Insider?
 

oc2pus

Ultimate Guru
apt ist ein wrapper-script um apt-get, apt-cdrom, apt-cache, apt-config ... und hat einige Optionen zusätzlich!

--force
--no-checksig
....

siehe man apt :)
Code:
Apt provides a single command line user interface for the following commands: apt-get(8), apt-cache(8), apt-config(8), apt-cdrom(8) and the rpm query possibilities. Besides the single interface it provides some additional options that are specific to apt in combination with rpm.

Unless the -h, --help, -v, or --version option is given one of the commands mentioned in the ACTIONS section must be present.

Detailed information about each apt command and its options can be found in the man pages that belong to the dispatched apt applications.

...

Actions supported by apt: add, autoclean, build-dep, check, clean, depends, dist-upgrade, dotty, dump, dumpavail, gencaches, groupinstall, groupnames, groupremove, ident, install, list-extras, list-nodeps, moo, pkgnames, policy, query, querytags, rdepends.  reinstall.  remove, script, search, show, showgroup, showpkg, showsrc, source, stats, unmet, update, upgrade, whatdepends, xvcg.
....
 
Oben