Open yveoch opened 7 years ago
Obrigado 🫡💘
thank you very much
The GOAT
The GOAT
the CAT
Thank you so much! Saved my ass.
I really wasn't expecting that this would solve my problem, thanks!
I think I've already gotten this error message like 12938901832 times before.
I keep debugging it for like 3 hours.
And always this issue post saves me.
You have saved our lives. We are eternally grateful.
This issue post has gained a meta level of helpfulness, an evergreen of uplift: for years now, every now and then, we get heartwarming thank-you messages by surprise. It's one of those small positive things that make my day.
Thanks everyone! <3
When trying to use the bash+curl verifying method on a server, this cryptic error message might happen:
gpg: signing failed: Inappropriate ioctl for device
Thank you so much...Life Saver
my saviour! :D
Suddenly, this doesn't seem to be working. I'm trying to get a copy of my GPG keys to my new laptop with:
ssh <user@server> gpg --export-secret-key <keyid> | gpg --import --batch
I've added the magic words to .profile, .bashrc, and .bash_profile in both user@server and locally, including restarting the terminal. Not sure what's going on.
Man... you are absolutely an amazing savior. Awesome. Thank you so much!
Thanks @yveoch you save mee..
https://github.com/keybase/keybase-issues/issues/2798#issue-205008630
Thanks @yveoch worked for me
2024 and still kicking! Thank you ❤️
thank you very much!
real superhero.
For lazy zsh users:
echo 'export GPG_TTY=$(tty)' >> ~/.zshrc
on MacOS, make sure you also have a pinentry program installed (if you have specified a passphrase when setting up your gpg key). You can do so (using homebrew as example);
brew install pinentry-mac
then
echo "pinentry-program $(which pinentry-mac)" >> ~/.gnupg/gpg-agent.conf
and finally
killall gpg-agent
Restart your terminal and voila!
Worked for me. Thank you @josenriagu
Just a thought: This shouldn't be an issue nor a bug since the need to expose GPG_TTY=$(tty)
is documented here: https://www.gnupg.org/documentation/manuals/gnupg/Invoking-GPG_002dAGENT.html
Of course, it can also be documented for keybase.
It works!😋
Thank you for this! 🙏
THANK YOU
on MacOS, make sure you also have a pinentry program installed (if you have specified a passphrase when setting up your gpg key). You can do so (using homebrew as example);
brew install pinentry-mac
thenecho "pinentry-program $(which pinentry-mac)" >> ~/.gnupg/gpg-agent.conf
and finallykillall gpg-agent
Restart your terminal and voila!
Thanks, this worked for me 🙏🏻
When trying to use the bash+curl verifying method on a server, this cryptic error message might happen:
gpg: signing failed: Inappropriate ioctl for device
Since this is a fatal error and also quite difficult to debug, maybe the fix could be put somewhere (in the provided command line?):
export GPG_TTY=$(tty)
Much love! <3
When trying to use the bash+curl verifying method on a server, this cryptic error message might happen:
gpg: signing failed: Inappropriate ioctl for device
Since this is a fatal error and also quite difficult to debug, maybe the fix could be put somewhere (in the provided command line?):
export GPG_TTY=$(tty)
Thank you buddy
When trying to use the bash+curl verifying method on a server, this cryptic error message might happen:
Since this is a fatal error and also quite difficult to debug, maybe the fix could be put somewhere (in the provided command line?):
source