opensuse use rpm install NOKEY problem
i facing a problem on installing pcsc-tools on opensuse (server mode), i have download the pcsc-tools from opensuse website flow by this link [https://software.opensuse.org/package/pcsc-tools][1].
unfortunately it need key for the rpm package installation.
Below is the step i try:
- Install openSUSE-Leap-15.0-NET-x86_64 in vmware virtual player.
- Hook the usb to the virtual player, and mount usb drive into opensuse.
- cd to the drive that mount at the folder and use rpm command -i or --force
it show the Header V3 DSA/SHA1 Signature, key ID 65176565:NOKEY
Is there any tar package suitable for opensuse, the major version opensuse-11 sp4 enterprise is the one which needed to be installed.
software-installation opensuse
|
show 4 more comments
i facing a problem on installing pcsc-tools on opensuse (server mode), i have download the pcsc-tools from opensuse website flow by this link [https://software.opensuse.org/package/pcsc-tools][1].
unfortunately it need key for the rpm package installation.
Below is the step i try:
- Install openSUSE-Leap-15.0-NET-x86_64 in vmware virtual player.
- Hook the usb to the virtual player, and mount usb drive into opensuse.
- cd to the drive that mount at the folder and use rpm command -i or --force
it show the Header V3 DSA/SHA1 Signature, key ID 65176565:NOKEY
Is there any tar package suitable for opensuse, the major version opensuse-11 sp4 enterprise is the one which needed to be installed.
software-installation opensuse
Have you tried to install it withzypper
? I don't think the signature output is the error here. Trying to reproduce it I encounter missing dependencies. But installing with zypper works in my case, where I am presented with the additional packages to be installed:leap15:~ # zypper in /tmp/pcsc-tools-1.5.3-4.1.x86_64.rpm [...] The following 4 NEW packages are going to be installed: libpcsclite1 pcsc-lite pcsc-tools perl-pcsc [...] pcsc-lite
– eblock
Jan 23 at 8:40
@eblock i have try using zypper ar -f software.opensuse.org/package/pcsc-tools/rpm/pcsc-tools , i not sure how to install it after command above
– Victor
Jan 23 at 8:45
@eblock it works on my vmplayer, how to install zypper in suse11 sp4?
– Victor
Jan 23 at 8:53
That's not how it works.zypper ar
just adds a repository, which in your case is the wrong repo url. If you need sle11sp4 it would look like this:zypper ar https://download.opensuse.org/repositories/security:/chipcard/SLE_11_SP4/ PCSC-Tools
. Then you install withzypper install pcsc-tools
. But you can also simply install the rpm you already downloaded withzypper in <path-to-rpm>
.
– eblock
Jan 23 at 8:55
I don't understand your latest comment "it works on my vmplayer, how to install zypper in suse11 sp4?" Does that mean that your sles11sp4 doesn't have zypper installed? Which would be weird... Or how to install pcsc-tools on a sles11sp4 system? If the latter, then it's the same way as in a leap system using zypper.
– eblock
Jan 23 at 8:57
|
show 4 more comments
i facing a problem on installing pcsc-tools on opensuse (server mode), i have download the pcsc-tools from opensuse website flow by this link [https://software.opensuse.org/package/pcsc-tools][1].
unfortunately it need key for the rpm package installation.
Below is the step i try:
- Install openSUSE-Leap-15.0-NET-x86_64 in vmware virtual player.
- Hook the usb to the virtual player, and mount usb drive into opensuse.
- cd to the drive that mount at the folder and use rpm command -i or --force
it show the Header V3 DSA/SHA1 Signature, key ID 65176565:NOKEY
Is there any tar package suitable for opensuse, the major version opensuse-11 sp4 enterprise is the one which needed to be installed.
software-installation opensuse
i facing a problem on installing pcsc-tools on opensuse (server mode), i have download the pcsc-tools from opensuse website flow by this link [https://software.opensuse.org/package/pcsc-tools][1].
unfortunately it need key for the rpm package installation.
Below is the step i try:
- Install openSUSE-Leap-15.0-NET-x86_64 in vmware virtual player.
- Hook the usb to the virtual player, and mount usb drive into opensuse.
- cd to the drive that mount at the folder and use rpm command -i or --force
it show the Header V3 DSA/SHA1 Signature, key ID 65176565:NOKEY
Is there any tar package suitable for opensuse, the major version opensuse-11 sp4 enterprise is the one which needed to be installed.
software-installation opensuse
software-installation opensuse
edited Jan 27 at 15:32
Jeff Schaller
40.7k1056129
40.7k1056129
asked Jan 23 at 8:30
VictorVictor
12
12
Have you tried to install it withzypper
? I don't think the signature output is the error here. Trying to reproduce it I encounter missing dependencies. But installing with zypper works in my case, where I am presented with the additional packages to be installed:leap15:~ # zypper in /tmp/pcsc-tools-1.5.3-4.1.x86_64.rpm [...] The following 4 NEW packages are going to be installed: libpcsclite1 pcsc-lite pcsc-tools perl-pcsc [...] pcsc-lite
– eblock
Jan 23 at 8:40
@eblock i have try using zypper ar -f software.opensuse.org/package/pcsc-tools/rpm/pcsc-tools , i not sure how to install it after command above
– Victor
Jan 23 at 8:45
@eblock it works on my vmplayer, how to install zypper in suse11 sp4?
– Victor
Jan 23 at 8:53
That's not how it works.zypper ar
just adds a repository, which in your case is the wrong repo url. If you need sle11sp4 it would look like this:zypper ar https://download.opensuse.org/repositories/security:/chipcard/SLE_11_SP4/ PCSC-Tools
. Then you install withzypper install pcsc-tools
. But you can also simply install the rpm you already downloaded withzypper in <path-to-rpm>
.
– eblock
Jan 23 at 8:55
I don't understand your latest comment "it works on my vmplayer, how to install zypper in suse11 sp4?" Does that mean that your sles11sp4 doesn't have zypper installed? Which would be weird... Or how to install pcsc-tools on a sles11sp4 system? If the latter, then it's the same way as in a leap system using zypper.
– eblock
Jan 23 at 8:57
|
show 4 more comments
Have you tried to install it withzypper
? I don't think the signature output is the error here. Trying to reproduce it I encounter missing dependencies. But installing with zypper works in my case, where I am presented with the additional packages to be installed:leap15:~ # zypper in /tmp/pcsc-tools-1.5.3-4.1.x86_64.rpm [...] The following 4 NEW packages are going to be installed: libpcsclite1 pcsc-lite pcsc-tools perl-pcsc [...] pcsc-lite
– eblock
Jan 23 at 8:40
@eblock i have try using zypper ar -f software.opensuse.org/package/pcsc-tools/rpm/pcsc-tools , i not sure how to install it after command above
– Victor
Jan 23 at 8:45
@eblock it works on my vmplayer, how to install zypper in suse11 sp4?
– Victor
Jan 23 at 8:53
That's not how it works.zypper ar
just adds a repository, which in your case is the wrong repo url. If you need sle11sp4 it would look like this:zypper ar https://download.opensuse.org/repositories/security:/chipcard/SLE_11_SP4/ PCSC-Tools
. Then you install withzypper install pcsc-tools
. But you can also simply install the rpm you already downloaded withzypper in <path-to-rpm>
.
– eblock
Jan 23 at 8:55
I don't understand your latest comment "it works on my vmplayer, how to install zypper in suse11 sp4?" Does that mean that your sles11sp4 doesn't have zypper installed? Which would be weird... Or how to install pcsc-tools on a sles11sp4 system? If the latter, then it's the same way as in a leap system using zypper.
– eblock
Jan 23 at 8:57
Have you tried to install it with
zypper
? I don't think the signature output is the error here. Trying to reproduce it I encounter missing dependencies. But installing with zypper works in my case, where I am presented with the additional packages to be installed: leap15:~ # zypper in /tmp/pcsc-tools-1.5.3-4.1.x86_64.rpm [...] The following 4 NEW packages are going to be installed: libpcsclite1 pcsc-lite pcsc-tools perl-pcsc [...] pcsc-lite
– eblock
Jan 23 at 8:40
Have you tried to install it with
zypper
? I don't think the signature output is the error here. Trying to reproduce it I encounter missing dependencies. But installing with zypper works in my case, where I am presented with the additional packages to be installed: leap15:~ # zypper in /tmp/pcsc-tools-1.5.3-4.1.x86_64.rpm [...] The following 4 NEW packages are going to be installed: libpcsclite1 pcsc-lite pcsc-tools perl-pcsc [...] pcsc-lite
– eblock
Jan 23 at 8:40
@eblock i have try using zypper ar -f software.opensuse.org/package/pcsc-tools/rpm/pcsc-tools , i not sure how to install it after command above
– Victor
Jan 23 at 8:45
@eblock i have try using zypper ar -f software.opensuse.org/package/pcsc-tools/rpm/pcsc-tools , i not sure how to install it after command above
– Victor
Jan 23 at 8:45
@eblock it works on my vmplayer, how to install zypper in suse11 sp4?
– Victor
Jan 23 at 8:53
@eblock it works on my vmplayer, how to install zypper in suse11 sp4?
– Victor
Jan 23 at 8:53
That's not how it works.
zypper ar
just adds a repository, which in your case is the wrong repo url. If you need sle11sp4 it would look like this: zypper ar https://download.opensuse.org/repositories/security:/chipcard/SLE_11_SP4/ PCSC-Tools
. Then you install with zypper install pcsc-tools
. But you can also simply install the rpm you already downloaded with zypper in <path-to-rpm>
.– eblock
Jan 23 at 8:55
That's not how it works.
zypper ar
just adds a repository, which in your case is the wrong repo url. If you need sle11sp4 it would look like this: zypper ar https://download.opensuse.org/repositories/security:/chipcard/SLE_11_SP4/ PCSC-Tools
. Then you install with zypper install pcsc-tools
. But you can also simply install the rpm you already downloaded with zypper in <path-to-rpm>
.– eblock
Jan 23 at 8:55
I don't understand your latest comment "it works on my vmplayer, how to install zypper in suse11 sp4?" Does that mean that your sles11sp4 doesn't have zypper installed? Which would be weird... Or how to install pcsc-tools on a sles11sp4 system? If the latter, then it's the same way as in a leap system using zypper.
– eblock
Jan 23 at 8:57
I don't understand your latest comment "it works on my vmplayer, how to install zypper in suse11 sp4?" Does that mean that your sles11sp4 doesn't have zypper installed? Which would be weird... Or how to install pcsc-tools on a sles11sp4 system? If the latter, then it's the same way as in a leap system using zypper.
– eblock
Jan 23 at 8:57
|
show 4 more comments
0
active
oldest
votes
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "106"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f496155%2fopensuse-use-rpm-install-nokey-problem%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Unix & Linux Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f496155%2fopensuse-use-rpm-install-nokey-problem%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Have you tried to install it with
zypper
? I don't think the signature output is the error here. Trying to reproduce it I encounter missing dependencies. But installing with zypper works in my case, where I am presented with the additional packages to be installed:leap15:~ # zypper in /tmp/pcsc-tools-1.5.3-4.1.x86_64.rpm [...] The following 4 NEW packages are going to be installed: libpcsclite1 pcsc-lite pcsc-tools perl-pcsc [...] pcsc-lite
– eblock
Jan 23 at 8:40
@eblock i have try using zypper ar -f software.opensuse.org/package/pcsc-tools/rpm/pcsc-tools , i not sure how to install it after command above
– Victor
Jan 23 at 8:45
@eblock it works on my vmplayer, how to install zypper in suse11 sp4?
– Victor
Jan 23 at 8:53
That's not how it works.
zypper ar
just adds a repository, which in your case is the wrong repo url. If you need sle11sp4 it would look like this:zypper ar https://download.opensuse.org/repositories/security:/chipcard/SLE_11_SP4/ PCSC-Tools
. Then you install withzypper install pcsc-tools
. But you can also simply install the rpm you already downloaded withzypper in <path-to-rpm>
.– eblock
Jan 23 at 8:55
I don't understand your latest comment "it works on my vmplayer, how to install zypper in suse11 sp4?" Does that mean that your sles11sp4 doesn't have zypper installed? Which would be weird... Or how to install pcsc-tools on a sles11sp4 system? If the latter, then it's the same way as in a leap system using zypper.
– eblock
Jan 23 at 8:57