26 lines
638 B
Markdown
26 lines
638 B
Markdown
|
---
|
||
|
title: YubiKey Neo GnuPG on Linux
|
||
|
date: 2017-02-17
|
||
|
layout: Post
|
||
|
hero: https://www.yubico.com/wp-content/uploads/2013/02/YubiKey-NEO-+-finger.jpg
|
||
|
hero credit: https://www.yubico.com/press/images/
|
||
|
hero credit text: Yubico
|
||
|
classes:
|
||
|
header: header-black-gradient
|
||
|
tags:
|
||
|
- u2f
|
||
|
- linux
|
||
|
---
|
||
|
|
||
|
Just a quick note to remind myself, when I inevitably forget.
|
||
|
|
||
|
The built-in GnuPG smartcard support doesn't really work particularly well, in my experience, with the YubiKey Neo. To fix this (and use pcscd) instead, put the following in `~/.gnupg/scdaemon.conf`:
|
||
|
|
||
|
---
|
||
|
|
||
|
```txt
|
||
|
pcsc-driver /usr/lib/libpcsclite.so
|
||
|
card-timeout 5
|
||
|
disable-ccid
|
||
|
```
|