The library version is too old -
https://developers.yubico.com/yubikey-p ... ility.htmlLinux Mint can use the Ubuntu PPA, so it's best to follow that method.
Code:
sudo add-apt-repository ppa:yubico/stable
sudo apt-get update
sudo apt-get install yubikey-personalization-gui
(I think instead of running the third command, since you already installed the app, you should be able to run "sudo apt-get upgrade" instead)
This will pull all dependencies and you should be able to use it with the YK4. At this point it's also a lot easier to install other Yubico apps like Yubico Authenticator. For example:
Code:
sudo apt-get install yubioath-desktop
You can find a full list of Ubuntu compiled apps here -
https://launchpad.net/~yubico/+archive/ubuntu/stableIf you're planning on implementing any smart card functionality or U2F, make sure to also run the following command and reboot:
Code:
sudo sh -c 'wget -q -O - https://raw.githubusercontent.com/Yubico/yubikey-neo-manager/master/resources/linux-fix-ccid-udev | python'
Another example can be found here -
viewtopic.php?f=26&t=2254#p8459