
How to renew an expired encryption subkey with gpg
Nov 17, 2019 · There is (a newer?) option in gpg (2.2.41) where you can extend all your subkeys at once with only the command: gpg --quick-set-expire <1> <2> <3> meaning: <1> fingerprint of your …
[SOLVED] gpg: keyserver receive failed: No route to host / Newbie ...
Jun 9, 2025 · gpg --keyserver hkp://keyserver.ubuntu.com --recv-key F23275E4BF10AFC1DF6914A6DBD2CE893E2D1C87 gpg: keyserver receive failed: No route to host
gpg - sks-keyservers gone. What to use instead? - Unix & Linux Stack ...
Jun 28, 2021 · Alternate public PGP key servers that support access via HKP (like SKS keyservers used to): keys.openpgp.org (based on hagrid) keyserver.ubuntu.com (based on Hockeypuck) …
gpg - GnuPG command to show key info from file - Unix & Linux Stack ...
Does anybody know the correct command to read a key file and show information about the key? Edit: Ideally the mechanism would be able to read the keyfile from stdin, such as cat keyfile.key | gpg - …
help understanding gpg --list--keys output - Unix & Linux Stack …
Oct 9, 2020 · Your private key, which, for historical reasons*, PGP and GPG call 'secret' and which is shown by --list-secret-keys, would be even longer; in addition, showing it on a terminal where in …
How to export a GPG private key and public key to a file
Nov 15, 2018 · I have generated keys using GPG, by executing the following command gpg --gen-key Now I need to export the key pair to a file; i.e., private and public keys to private.pgp and public.pgp, …
Solving gpg: decryption failed: No secret key - Unix & Linux Stack …
Mar 21, 2023 · Then when using gpg, your ~/.gnupg directory should be backuped with as many precaution as the enciphered files. You also have the gpg --export > export and gpg --export-secret …
GPG failing with no error for one of my encrypted files
Apr 1, 2022 · I'm using gpg 2.2.20 to encrypt plain text password files using my PGP key on Ubuntu as well as OSX (both have the same PGP key). I've got a single encrypted file that won't decrypt in …
GPG can't decrypt: no pinentry program - Unix & Linux Stack Exchange
Sep 30, 2021 · 14 I can't decrypt my passwords with pass neither with gpg directly. gpg: encrypted with rsa4096 key, ID id, created creation_date "name <email>" gpg: public key decryption failed: No …
How to import secret gpg key (copied from one machine to another)?
Feb 15, 2015 · I'm trying to copy my gpg key from one machine to another. I do: gpg --export ${ID} > public.key gpg --export-secret-key ${ID} > private.key Move files to new machine, and then: gpg - …