25 lines
574 B
Markdown
25 lines
574 B
Markdown
---
|
|
title: YubiKey Neo GnuPG on Linux
|
|
date: 2017-02-17
|
|
layout: Post
|
|
hero: banner.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
|
|
```
|