Quote from: r00b00cup on October 11, 2012, 02:36 pmHi again. Basically i generated a key pair in the terminal following the guide you gave me (command line pgp easier than shit)But when i load up my usb + type in 'gpg -a --export dsfklldkfj@fdkfjlf.com' It says gpg : WARNING: nothing exported ?>?>? It's like it doesn't remember me generating the key. Ubuntu doesn't remember anything i do it seems (although that is a good thing). For instance i have to download and install with each use etc. But it doesn't even remember my key? I'm so confusedWhat do you see if you use the command: gpg --list-keys >keylist.txtIf you enter that command, it should output a list of all your PGP public keys into the text keylist.txtYou're just missing the option to redirect the output to a file; this is usually carried out using the greater-than (>) symbol, e.g. gpg --armor --export dsfklldkfj@fdkfjlf.com >exported_key.ascYour exported key will be found in: exported_key.ascI hope you're not enclosing your command in single-quotes (') -- that may cause problems of its own.