diff options
author | drduh <drduh@users.noreply.github.com> | 2017-12-18 09:28:15 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-12-18 09:28:15 -0800 |
commit | 76bb6205945f6e315a5f1c10be509cfb3dbbcd90 (patch) | |
tree | 5c8da65aa9f5c92cfaa842f501bc54a9f39a69b6 /README.md | |
parent | Mention ssh multiplex to ease multiple connections (diff) | |
parent | Update README.md (diff) | |
download | YubiKey-Guide-76bb6205945f6e315a5f1c10be509cfb3dbbcd90.tar.gz |
Merge pull request #42 from kiralex/master
Fix ssh-agent does not work on archlinux
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -1164,6 +1164,12 @@ Depending on how your environment is set up, you might need to add these to your export GPG_TTY="$(tty)" export SSH_AUTH_SOCK="${HOME}/.gnupg/S.gpg-agent.ssh" gpgconf --launch gpg-agent + +**Note : ** On some systems, for example Archlinux based distros, you need to replace the second and the third line by +``` +export SSH_AUTH_SOCK="/run/user/$UID/gnupg/S.gpg-agent.ssh" +gpg-connect-agent updatestartuptty /bye +``` ### Copy public key to server |