GPG error while trying to install tor from external repository
Hello All I am Having a problem in installing tor in ubuntu....when i start adding tor repository to my system and write the command
gpg --keyserver keys.gnupg.net --recv 886DDD89
then a error comes which is
gpg: Invalid option "--keyserver.ubuntu.com"
hailendra@hailendra-Ideapad-Z570:~$ gpg --keyserver keys.ubuntu.com --recv 886DDD89
gpg: requesting key 886DDD89 from hkp server keys.ubuntu.com
gpgkeys: key 886DDD89 not found on keyserver
gpg: no valid OpenPGP data found.
gpg: Total number processed: 0
can any one help me what to do?
tor keyserver gpg
add a comment |
Hello All I am Having a problem in installing tor in ubuntu....when i start adding tor repository to my system and write the command
gpg --keyserver keys.gnupg.net --recv 886DDD89
then a error comes which is
gpg: Invalid option "--keyserver.ubuntu.com"
hailendra@hailendra-Ideapad-Z570:~$ gpg --keyserver keys.ubuntu.com --recv 886DDD89
gpg: requesting key 886DDD89 from hkp server keys.ubuntu.com
gpgkeys: key 886DDD89 not found on keyserver
gpg: no valid OpenPGP data found.
gpg: Total number processed: 0
can any one help me what to do?
tor keyserver gpg
Which guid did you follow? Which repository did you add? Is it a Ubuntu PPA, why did you not useadd-apt-repository
then? Have you tried installing the tor package that is already in the Ubuntu repository? help.ubuntu.com/community/Tor
– LiveWireBT
Oct 7 '13 at 10:01
add a comment |
Hello All I am Having a problem in installing tor in ubuntu....when i start adding tor repository to my system and write the command
gpg --keyserver keys.gnupg.net --recv 886DDD89
then a error comes which is
gpg: Invalid option "--keyserver.ubuntu.com"
hailendra@hailendra-Ideapad-Z570:~$ gpg --keyserver keys.ubuntu.com --recv 886DDD89
gpg: requesting key 886DDD89 from hkp server keys.ubuntu.com
gpgkeys: key 886DDD89 not found on keyserver
gpg: no valid OpenPGP data found.
gpg: Total number processed: 0
can any one help me what to do?
tor keyserver gpg
Hello All I am Having a problem in installing tor in ubuntu....when i start adding tor repository to my system and write the command
gpg --keyserver keys.gnupg.net --recv 886DDD89
then a error comes which is
gpg: Invalid option "--keyserver.ubuntu.com"
hailendra@hailendra-Ideapad-Z570:~$ gpg --keyserver keys.ubuntu.com --recv 886DDD89
gpg: requesting key 886DDD89 from hkp server keys.ubuntu.com
gpgkeys: key 886DDD89 not found on keyserver
gpg: no valid OpenPGP data found.
gpg: Total number processed: 0
can any one help me what to do?
tor keyserver gpg
tor keyserver gpg
edited Oct 25 '13 at 15:01
qbi
15.1k863119
15.1k863119
asked Oct 7 '13 at 9:51
Hailendra Nath HardeniyanHailendra Nath Hardeniyan
1112
1112
Which guid did you follow? Which repository did you add? Is it a Ubuntu PPA, why did you not useadd-apt-repository
then? Have you tried installing the tor package that is already in the Ubuntu repository? help.ubuntu.com/community/Tor
– LiveWireBT
Oct 7 '13 at 10:01
add a comment |
Which guid did you follow? Which repository did you add? Is it a Ubuntu PPA, why did you not useadd-apt-repository
then? Have you tried installing the tor package that is already in the Ubuntu repository? help.ubuntu.com/community/Tor
– LiveWireBT
Oct 7 '13 at 10:01
Which guid did you follow? Which repository did you add? Is it a Ubuntu PPA, why did you not use
add-apt-repository
then? Have you tried installing the tor package that is already in the Ubuntu repository? help.ubuntu.com/community/Tor– LiveWireBT
Oct 7 '13 at 10:01
Which guid did you follow? Which repository did you add? Is it a Ubuntu PPA, why did you not use
add-apt-repository
then? Have you tried installing the tor package that is already in the Ubuntu repository? help.ubuntu.com/community/Tor– LiveWireBT
Oct 7 '13 at 10:01
add a comment |
3 Answers
3
active
oldest
votes
In order to be able to install from a secured repository you will need to add their public key to apt.
You should have received an information on where to get the public key from the makers of the repository. Download this key and save it on your drive.
The we can add this key with
sudo apt-key add </path/name_of_downloaded_key_file>
add a comment |
The keyserver keys.ubuntu.com seems not to be active at the moment. You can however use keys.gnupg.net:
gpg --keyserver keys.gnupg.net --recv 886DDD89
gpg --export A3C4F0F979CAA22CDBA8F512EE8CBC9E886DDD89 | sudo apt-key add -
add a comment |
try gpg --keyserver keyserver.ubuntu.com --recv 886DDD89
this should work
try directly copy and execute command from line above, in your question you have mistake in input string gpg: Invalid option "--keyserver.ubuntu.com"
and you should use keyserver.ubuntu.com instead of keys.ubuntu.com
when key is received export it using this: `gpg --export A3C4F0F979CAA22CDBA8F512EE8CBC9E886DDD89 | sudo apt-key add -
If this doesn't work please post output of this command: gpg --keyserver keyserver.ubuntu.net --search-keys 886DDD89
Already tried running that command in the question, but it resulted in the error:gpgkeys: key 886DDD89 not found on keyserver
– karel
Mar 11 '15 at 11:29
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "89"
};
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: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
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%2faskubuntu.com%2fquestions%2f354771%2fgpg-error-while-trying-to-install-tor-from-external-repository%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
3 Answers
3
active
oldest
votes
3 Answers
3
active
oldest
votes
active
oldest
votes
active
oldest
votes
In order to be able to install from a secured repository you will need to add their public key to apt.
You should have received an information on where to get the public key from the makers of the repository. Download this key and save it on your drive.
The we can add this key with
sudo apt-key add </path/name_of_downloaded_key_file>
add a comment |
In order to be able to install from a secured repository you will need to add their public key to apt.
You should have received an information on where to get the public key from the makers of the repository. Download this key and save it on your drive.
The we can add this key with
sudo apt-key add </path/name_of_downloaded_key_file>
add a comment |
In order to be able to install from a secured repository you will need to add their public key to apt.
You should have received an information on where to get the public key from the makers of the repository. Download this key and save it on your drive.
The we can add this key with
sudo apt-key add </path/name_of_downloaded_key_file>
In order to be able to install from a secured repository you will need to add their public key to apt.
You should have received an information on where to get the public key from the makers of the repository. Download this key and save it on your drive.
The we can add this key with
sudo apt-key add </path/name_of_downloaded_key_file>
answered Oct 7 '13 at 10:42
TakkatTakkat
108k37250377
108k37250377
add a comment |
add a comment |
The keyserver keys.ubuntu.com seems not to be active at the moment. You can however use keys.gnupg.net:
gpg --keyserver keys.gnupg.net --recv 886DDD89
gpg --export A3C4F0F979CAA22CDBA8F512EE8CBC9E886DDD89 | sudo apt-key add -
add a comment |
The keyserver keys.ubuntu.com seems not to be active at the moment. You can however use keys.gnupg.net:
gpg --keyserver keys.gnupg.net --recv 886DDD89
gpg --export A3C4F0F979CAA22CDBA8F512EE8CBC9E886DDD89 | sudo apt-key add -
add a comment |
The keyserver keys.ubuntu.com seems not to be active at the moment. You can however use keys.gnupg.net:
gpg --keyserver keys.gnupg.net --recv 886DDD89
gpg --export A3C4F0F979CAA22CDBA8F512EE8CBC9E886DDD89 | sudo apt-key add -
The keyserver keys.ubuntu.com seems not to be active at the moment. You can however use keys.gnupg.net:
gpg --keyserver keys.gnupg.net --recv 886DDD89
gpg --export A3C4F0F979CAA22CDBA8F512EE8CBC9E886DDD89 | sudo apt-key add -
answered Oct 23 '13 at 19:18
qbiqbi
15.1k863119
15.1k863119
add a comment |
add a comment |
try gpg --keyserver keyserver.ubuntu.com --recv 886DDD89
this should work
try directly copy and execute command from line above, in your question you have mistake in input string gpg: Invalid option "--keyserver.ubuntu.com"
and you should use keyserver.ubuntu.com instead of keys.ubuntu.com
when key is received export it using this: `gpg --export A3C4F0F979CAA22CDBA8F512EE8CBC9E886DDD89 | sudo apt-key add -
If this doesn't work please post output of this command: gpg --keyserver keyserver.ubuntu.net --search-keys 886DDD89
Already tried running that command in the question, but it resulted in the error:gpgkeys: key 886DDD89 not found on keyserver
– karel
Mar 11 '15 at 11:29
add a comment |
try gpg --keyserver keyserver.ubuntu.com --recv 886DDD89
this should work
try directly copy and execute command from line above, in your question you have mistake in input string gpg: Invalid option "--keyserver.ubuntu.com"
and you should use keyserver.ubuntu.com instead of keys.ubuntu.com
when key is received export it using this: `gpg --export A3C4F0F979CAA22CDBA8F512EE8CBC9E886DDD89 | sudo apt-key add -
If this doesn't work please post output of this command: gpg --keyserver keyserver.ubuntu.net --search-keys 886DDD89
Already tried running that command in the question, but it resulted in the error:gpgkeys: key 886DDD89 not found on keyserver
– karel
Mar 11 '15 at 11:29
add a comment |
try gpg --keyserver keyserver.ubuntu.com --recv 886DDD89
this should work
try directly copy and execute command from line above, in your question you have mistake in input string gpg: Invalid option "--keyserver.ubuntu.com"
and you should use keyserver.ubuntu.com instead of keys.ubuntu.com
when key is received export it using this: `gpg --export A3C4F0F979CAA22CDBA8F512EE8CBC9E886DDD89 | sudo apt-key add -
If this doesn't work please post output of this command: gpg --keyserver keyserver.ubuntu.net --search-keys 886DDD89
try gpg --keyserver keyserver.ubuntu.com --recv 886DDD89
this should work
try directly copy and execute command from line above, in your question you have mistake in input string gpg: Invalid option "--keyserver.ubuntu.com"
and you should use keyserver.ubuntu.com instead of keys.ubuntu.com
when key is received export it using this: `gpg --export A3C4F0F979CAA22CDBA8F512EE8CBC9E886DDD89 | sudo apt-key add -
If this doesn't work please post output of this command: gpg --keyserver keyserver.ubuntu.net --search-keys 886DDD89
edited Mar 12 '15 at 7:46
answered Mar 11 '15 at 11:27
ForceUserForceUser
1014
1014
Already tried running that command in the question, but it resulted in the error:gpgkeys: key 886DDD89 not found on keyserver
– karel
Mar 11 '15 at 11:29
add a comment |
Already tried running that command in the question, but it resulted in the error:gpgkeys: key 886DDD89 not found on keyserver
– karel
Mar 11 '15 at 11:29
Already tried running that command in the question, but it resulted in the error:
gpgkeys: key 886DDD89 not found on keyserver
– karel
Mar 11 '15 at 11:29
Already tried running that command in the question, but it resulted in the error:
gpgkeys: key 886DDD89 not found on keyserver
– karel
Mar 11 '15 at 11:29
add a comment |
Thanks for contributing an answer to Ask Ubuntu!
- 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%2faskubuntu.com%2fquestions%2f354771%2fgpg-error-while-trying-to-install-tor-from-external-repository%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
Which guid did you follow? Which repository did you add? Is it a Ubuntu PPA, why did you not use
add-apt-repository
then? Have you tried installing the tor package that is already in the Ubuntu repository? help.ubuntu.com/community/Tor– LiveWireBT
Oct 7 '13 at 10:01