Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix initial setup problem: Yubikey vs YubiKey #84

Merged
merged 1 commit into from
Apr 25, 2019

Conversation

crcastle
Copy link
Contributor

I just got a new YubiKey Nano 5C, and the setup process wasn't working for me because I couldn't find the Product ID and Vendor ID. I traced it to a case sensitivity issue with grep.

Here is the YubiKey output of lsusb:

Bus 020 Device 001: ID 1050:0407 1050 YubiKey OTP+FIDO+CCID

Note the upper case "K" in YubiKey.

Similar with ioreg -p IOUSB -l -w 0 -x

"USB Product Name" = "YubiKey OTP+FIDO+CCID"

Looking at the Yubico website, the product name is actually YubiKey with a capital K.

I've made the grep command case-insensitive in the setup instructions so that both Yubikey and YubiKey are found. -i ignores case in both GNU grep and grep included in macOS.

I just got a new YubiKey Nano 5C, and the setup process wasn't working for me because I couldn't find the Product ID and Vendor ID. I traced it to a case sensitivity issue with `grep`.

Here is the YubiKey output of `lsusb`:

```
Bus 020 Device 001: ID 1050:0407 1050 YubiKey OTP+FIDO+CCID
```

Note the upper case "K" in YubiKey.

Similar with `ioreg -p IOUSB -l -w 0 -x`

```
"USB Product Name" = "YubiKey OTP+FIDO+CCID"
```

Looking at the [Yubico website](https://www.yubico.com/products/yubikey-hardware/), the product name is actually YubiKey with a capital K.

I've made the `grep` command case-insensitive in the setup instructions so that both `Yubikey` and `YubiKey` are found.
@pallotron pallotron merged commit 842b17d into pallotron:master Apr 25, 2019
@pallotron
Copy link
Owner

thanks for the PR

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants