Ok, curl works now after update, although I also see this strange last line in STOUT.
My somewhat hidden question or hint is that I edited the key file by hand and the import suddenly works. I have the impression I accidentally fixed the download changed by 'wget' with the editor. I removed a 'carriage return'. This also changes the file content. Is that possible or is there a deeper problem? I thought I found an irregularity. Please excuse the question. By the way, curl is not default in Debian Buster. Olaf Am 16.11.19 um 13:15 schrieb Roman Mamedov: > On Fri, 15 Nov 2019 20:43:12 +0100 > Olaf Grimm <[email protected]> wrote: > >> Hello! >> >> I repeatedly try to install Tor under Debian Buster and fail again at >> key import. >> With the last system I found the solution by activating the >> "Experimental repos" under Debian. This time it didn't work and I kept >> looking. >> >> Before repair: >> ... >> 2019-11-15 21:18:33 (294 KB/s) - >> ‘A3C4F0F979CAA22CDBA8F512EE8CBC9E886DDD89.asc’ saved [19665/19665] >> gpg: no valid OpenPGP data found. >> gpg: Total number processed: 0 > You have previously asked about this on 17th of October and have been advised > to use curl as the site suggests, not wget. The issue here is that 'curl' > writes the downloaded file to its STDOUT by default, but wget does not. > So pipe-based usage such as: > > curl ... | gpg ... <- will work > > but > > wget ... | gpg ... <- will not > > For 'wget' to work in the same situation you need to tell it to output the > downloaded file to STDOUT, like curl does. It is done by appending "-O -" to > its arguments. If you use wget, don't forget to do that: > > wget -O - http://URL | gpg ... > > _______________________________________________ tor-relays mailing list [email protected] https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-relays
