Update 'Yubico Authenticator in Ubuntu with Wayland'

Andy 2023-01-21 20:18:55 +00:00
parent 634a63750d
commit 5810adc1f4

@ -0,0 +1,31 @@
## Yubico Authenticator in Ubuntu with Wayland
Linux/Ubuntu 22.04
1. Install Yubico Authenticator
https://www.yubico.com/products/yubico-authenticator/#h-download-yubico-authenticator
```
cd ~/Downloads
wget -c https://developers.yubico.com/yubioath-flutter/Releases/yubico-authenticator-latest-linux.tar.gz
tar xvf yubico-authenticator-6.0.2b-linux.tar.gz
cd yubico-authenticator-6.0.2b-linux
./desktop_integration.sh -i
```
2. Enable `pcscd`
> install pcscd if you don't have it: `sudo apt -y install pcscd`
```
sudo systemctl enable --now pcscd
```
3. Update `Exec=` in `~/.local/share/applications/com.yubico.authenticator.desktop` file as follows
```
Exec=/bin/sh -c 'env __EGL_VENDOR_LIBRARY_FILENAMES=/usr/share/glvnd/egl_vendor.d/50_mesa.json $HOME/Downloads/yubico-authenticator-6.0.2b-linux/authenticator'
```