Skip to content

Instantly share code, notes, and snippets.

@voran
Last active December 12, 2025 07:10
Show Gist options
  • Select an option

  • Save voran/4e16f983d3307d54d076d920989163de to your computer and use it in GitHub Desktop.

Select an option

Save voran/4e16f983d3307d54d076d920989163de to your computer and use it in GitHub Desktop.
B-trust BSS Setup for Arch Linux
#!/bin/bash
yay -S btrustbiss
yay -S sac-core
sudo rm /opt/btrustbiss/lib/app/p11_libs/*
sudo find /opt/btrustbiss/lib/app/BTrustCA/ -name *.cer -exec trust anchor --store {} \;
sudo ln -s /usr/lib/libpcsclite.so.1 /usr/lib/libpcsclite.so.1.0.0
sudo pacman -S ccid pcsclite
sudo systemctl enable pcscd && sudo systemctl start pcscd
echo "To finish, install linux driver from https://www.abcircle.co.jp/en/product/2/CIR115B/sim-sized-contact-smart-card-reader/"
@ageorgiev-bg
Copy link

I believe the linux driver is not needed. On the top of the packages mentioned above I have opensc-p11-kit-module and it works just fine without the driver.
Arch linux page with some more info about the configuration of the app:
https://wiki.archlinux.org/title/Smartcards

P.S. Thank you for this script.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment