eupolicy.social is one of the many independent Mastodon servers you can use to participate in the fediverse.
This Mastodon server is a friendly and respectful discussion space for people working in areas related to EU policy. When you request to create an account, please tell us something about you.

Server stats:

215
active users

#ssh

8 posts7 participants0 posts today
Peter N. M. Hansteen<p>Happy "Logging in as users -, [ and $ day" to all who celebrate:</p><p>Jul 19 02:02:12 portal sshd-session[88959]: Failed password for invalid user - from 152.42.130.79 port 33738 ssh2<br>Jul 19 03:00:14 portal sshd-session[79691]: Failed password for invalid user [ from 152.42.130.79 port 41708 ssh2<br>Jul 19 03:58:56 portal sshd-session[6194]: Failed password for invalid user $ from 152.42.130.79 port 55398 ssh2</p><p><a href="https://mastodon.social/tags/ssh" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>ssh</span></a> <a href="https://mastodon.social/tags/passwordgroping" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>passwordgroping</span></a> <a href="https://mastodon.social/tags/security" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>security</span></a> <a href="https://mastodon.social/tags/passwords" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>passwords</span></a> <a href="https://mastodon.social/tags/cybercrime" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>cybercrime</span></a> <a href="https://mastodon.social/tags/botnet" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>botnet</span></a></p>
Paul Chambers🚧<p>PuTTY, the renowned FOSS SSH client for Windows, is not the same people as those behind the PUTTY.ORG website." – and now putty.org is spouting anti-vaccination propaganda "because a bunch of communists hate me."</p><p>"An unfolding controversy over the contents of a website that contained links to several different pieces of SSH-related software has escalated. At the time of writing, the owners of the website have replaced this content with anti-vaccination propaganda." <a href="https://oldfriends.live/tags/Putty" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Putty</span></a> <a href="https://oldfriends.live/tags/SSH" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>SSH</span></a> <a href="https://oldfriends.live/tags/Linux" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Linux</span></a> </p><p><a href="https://www.theregister.com/2025/07/17/puttyorg_website_controversy/" rel="nofollow noopener" translate="no" target="_blank"><span class="invisible">https://www.</span><span class="ellipsis">theregister.com/2025/07/17/put</span><span class="invisible">tyorg_website_controversy/</span></a></p><p>🚨 The real Putty software website: <a href="https://www.chiark.greenend.org.uk/~sgtatham/putty/" rel="nofollow noopener" translate="no" target="_blank"><span class="invisible">https://www.</span><span class="ellipsis">chiark.greenend.org.uk/~sgtath</span><span class="invisible">am/putty/</span></a></p><p>🔗 putty.org archive before: <a href="https://archive.ph/oyGCU" rel="nofollow noopener" translate="no" target="_blank"><span class="invisible">https://</span><span class="">archive.ph/oyGCU</span><span class="invisible"></span></a><br>🔗 Putty.org archive after: <a href="https://archive.ph/ArTC7" rel="nofollow noopener" translate="no" target="_blank"><span class="invisible">https://</span><span class="">archive.ph/ArTC7</span><span class="invisible"></span></a><br>🔗 All: <a href="https://archive.ph/putty.org" rel="nofollow noopener" translate="no" target="_blank"><span class="invisible">https://</span><span class="">archive.ph/putty.org</span><span class="invisible"></span></a></p>
Death by Lambda<p><span class="h-card" translate="no"><a href="https://mastodon.social/@Viss" class="u-url mention" rel="nofollow noopener" target="_blank">@<span>Viss</span></a></span> <br>Also, 99% of malicious <a href="https://mastodon.social/tags/ssh" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>ssh</span></a> attempts are "internet safety researchers".</p><p>I black hole the lot of them.</p>
Luc<p><strong>Bonjour Bignole&nbsp;!</strong></p><p>De part mon activité d’administrateur systèmes, je dois régulièrement me connecter en SSH à de nombreuses machines. 216 d’après mon fichier <code>.ssh/config</code>, mais y a des alias et des machines virtuelles de développement dans le tas. Mais je dépasse largement les 150 machines.</p><p>J’ai longtemps —&nbsp;depuis que je l’ai découvert, il y a des années&nbsp;— utilisé <a href="https://pypi.org/project/concierge/" rel="nofollow noopener" target="_blank">concierge</a> (écrit en Python) pour gérer ma configuration SSH. Un de ses grands avantages est le support de moteurs de <em>templates</em>, ce qui me permet de faire des boucles du genre&nbsp;:</p><pre><code>{% for host in ('foo', 'bar') %}Host {{ host }} HostName {{ host }}.domain.tld User luc{% endfor %}</code></pre><p>Le problème de concierge est qu’il n’est plus maintenu depuis plusieurs années, ce qui complique son installation sur des systèmes récents. Entre les dépendances pas bien fixées qui installent une version incompatibles de leurs dépendances à elles et certaines fonctionnalités de la bibliothèque standard qui ont migré dans des modules non listés en tant que dépendances… ça foirait à chaque installation.</p><p>Ma solution&nbsp;: forker concierge pour créer <a href="https://pypi.org/project/bignole/" rel="nofollow noopener" target="_blank">Bignole</a> ! (une <a href="https://fr.wiktionary.org/wiki/bignole" rel="nofollow noopener" target="_blank">bignole</a> est un terme d’argot pour… concierge 😁)</p><p></p><p>Le code est sur <a href="https://framagit.org/fiat-tux/bignole" rel="nofollow noopener" target="_blank">https://framagit.org/fiat-tux/bignole</a>.</p><p>Au programme du fork :</p><ul><li>mise à jour des dépendances</li><li>intégration directe des moteurs de <em>templates</em> sous forme de dépendances optionnelles au lieu de proposer des paquets distincts comme le fait concierge</li><li>suppression du support de <code>libnotify</code> qui n’a jamais fonctionné chez moi&nbsp;: je voulais avoir rapidement un outil fonctionnel, pas passer des jours à débuguer</li><li>suite de tests automatisés via Gitlab CI (parce que la CI, c’est mon dada, j’adore ça)</li><li>modernisation des outils de publication :&nbsp;exit les <code>setup.py</code> et <code>setup.cfg</code>, bonjour <code>pyproject.toml</code> (bon, j’avoue, c’est parce que j’utilise ça dans <a href="https://argos-monitoring.framasoft.org/" rel="nofollow noopener" target="_blank">Argos Panoptès</a> et je sais pas faire autrement 😅)</li></ul><p>Pour installer Bignole, avec <code>jinja2</code> par exemple, c’est simple comme bonjour&nbsp;:</p><pre><code>pip install 'bignole[jinja]'</code></pre><p>Et si vous utilisez <a href="https://docs.astral.sh/uv/" rel="nofollow noopener" target="_blank">uv</a> (et vous devriez car c’est fort pratique)&nbsp;:</p><pre><code>uv tool install 'bignole[jinja]'</code></pre><p>Après l’installation, vous aurez deux utilitaires&nbsp;: <code>bignole</code> et <code>bignole-check</code> (celui-ci ne servant qu’à vous indiquer si votre fichier contient une syntaxe correcte).</p><p>En faisant <code>bignole --systemd</code>, vous aurez des instructions pour créer un service systemd qui surveillera votre fichier de configuration (<code>~/.bignolerc</code> par défaut) et re-générera automatiquement votre <code>.ssh/config</code> au moindre changement.</p><p>Pour le reste de l’utilisation, je vous laisse lire le README sur <a href="https://pypi.org/project/bignole/" rel="nofollow noopener" target="_blank">https://pypi.org/project/bignole/</a> 🙂</p><p>PS&nbsp;: oui, je connais le système des <code>Tag</code> dans la config SSH (j’en utilise), mais une boucle reste pratique même en les utilisant. Par exemple&nbsp;:</p><pre><code>{% for host in ('foo', 'bar') %}Host {{ host }} HostName {{ host }}.domain.tld Tag perso{% endfor %}</code></pre><p><a rel="nofollow noopener" class="hashtag u-tag u-category" href="https://fiat-tux.fr/tag/dev/" target="_blank">#Dev</a> <a rel="nofollow noopener" class="hashtag u-tag u-category" href="https://fiat-tux.fr/tag/python/" target="_blank">#Python</a> <a rel="nofollow noopener" class="hashtag u-tag u-category" href="https://fiat-tux.fr/tag/ssh/" target="_blank">#Ssh</a></p>
Luc, fromager<p>It gives me great, great pleasure to announce that <a href="https://framapiaf.org/tags/Bignole" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Bignole</span></a>, my fork of <a href="https://framapiaf.org/tags/Concierge" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Concierge</span></a> is finally published!</p><p><a href="https://pypi.org/project/bignole/" rel="nofollow noopener" translate="no" target="_blank"><span class="invisible">https://</span><span class="">pypi.org/project/bignole/</span><span class="invisible"></span></a></p><p>Do you use <a href="https://framapiaf.org/tags/SSH" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>SSH</span></a> a lot? Is your .ssh/config complex and thousands of lines long?<br>Try Bignole!</p><p>By using a template engine (jinja2 and mako are available), the SSH config I maintain is less than a third of the .ssh/config file that's generated!</p>
Luc, fromager<p>J’ai le grand, l’immense plaisir de vous annoncer que <a href="https://framapiaf.org/tags/Bignole" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Bignole</span></a>, mon fork de <a href="https://framapiaf.org/tags/Concierge" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Concierge</span></a> est enfin publié !<br><a href="https://pypi.org/project/bignole/" rel="nofollow noopener" translate="no" target="_blank"><span class="invisible">https://</span><span class="">pypi.org/project/bignole/</span><span class="invisible"></span></a></p><p>Vous utilisez beaucoup <a href="https://framapiaf.org/tags/SSH" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>SSH</span></a> ? Votre .ssh/config est d’une complexité sans nom et fait des milliers de lignes&nbsp;?<br>Essayez Bignole&nbsp;!<br>Avec l’utilisation d’un moteur de template (jinja2 ou mako), la config SSH que je maintiens fait moins d’un tiers du fichier .ssh/config qui est généré&nbsp;!</p>
Crazy-to-Bike<p><a href="https://mastodon.social/@alexantemachina" class="u-url mention" rel="nofollow noopener" target="_blank">@alexantemachina@mastodon.social</a><span> <br><br>Gerade habe ich das letzte # Proxmox </span><a href="https://fediworld.de/tags/Backup" rel="nofollow noopener" target="_blank">#Backup</a> der <a href="https://fediworld.de/tags/Homeassistant" rel="nofollow noopener" target="_blank">#Homeassistant</a> <a href="https://fediworld.de/tags/VM" rel="nofollow noopener" target="_blank">#VM</a><span>, zu dessen Zeitpunkt die Daten in Homeassistant noch alle da waren, zurückgespielt. <br><br>Und siehe da, nun ist auch das Verzeichnis '/homeassistant' mit jeder Menge Inhalt befüllt.<br><br>Kein Wunder, dass die histrorischen Daten fehlen, wenn die ganze Datenbank, die configuration.yaml etc. komplett weg sind.<br><br>Aus irgendeinem Grund hat sich das Verzeichnis komplett geleert, als ob da jemand 'rm -r /homeassistant' gemacht hätte. Da aber niemand außer mir Zugriff darauf hat (Zugriff von extern nur per </span><a href="https://fediworld.de/tags/VPN" rel="nofollow noopener" target="_blank">#VPN</a>, <a href="https://fediworld.de/tags/SSH" rel="nofollow noopener" target="_blank">#SSH</a> mit <a href="https://fediworld.de/tags/Pubkey" rel="nofollow noopener" target="_blank">#Pubkey</a> abgesichert und Passwortzugang deaktiviert, keiner außer mir kennt die Zugangsdaten, mein Notebook ist vollverschlüsselt), kann das eigentlich nicht sein. 🤔🤷‍♂️<span><br><br>Eigentlich könnte nur sein, dass ein Addon einen Trojaner / Backdoor enthält.<br><br>Installiert ist <br>- evcc<br>- File Editor<br>- Grafana *<br>- Let's Encrypt *<br>- Mosquito Broker<br>- SQLite Web<br>- TasmoAdmin<br>- Terminal &amp; SSH<br>- Zigbee2MQTT<br><br>aus </span><a href="https://fediworld.de/tags/HACS" rel="nofollow noopener" target="_blank">#HACS</a><span><br>- card-mod<br>- Power Flow Card Plus<br>- Power Distribution Card<br>- Energy Flow Card Plus<br>- Energy Period Selector Plus *<br><br>* aktuell unbenutzt<br><br>Und Integrationen für<br>- FritzBox<br>- Backup *<br>- Einkaufsliste *<br>- HACS<br>- Homeassistant Supervisor *<br>- Meteorologisk institutt (Met.no) *<br>- Mobile App *<br>- MQTT<br>- Radio Browser *<br>- Goodwe Inverter<br>- Reolink<br>- SMLIGHT SLZB<br>- Sonne *<br>- Tasmota<br><br>* nicht selbst installiert und bis auf Backup ungenutzt</span></p>
PupRed :pride_heart:<p><a href="https://mk.absturztau.be/tags/BitVise" rel="nofollow noopener" target="_blank">#BitVise</a> CEO Denis B. doxxed me and called me an Idiot instead of answering my Questions about <a href="https://mk.absturztau.be/tags/PuTTY" rel="nofollow noopener" target="_blank">#PuTTY</a><span>.org Domain they stole to advertise their own Product! <br><br>Read more about it here: </span><a href="https://blog.pupred.com/blog/puttyvsbitvise/" rel="nofollow noopener" target="_blank">https://blog.pupred.com/blog/puttyvsbitvise/</a><span><br><br><br><br></span><a href="https://mk.absturztau.be/tags/it" rel="nofollow noopener" target="_blank">#it</a> <a href="https://mk.absturztau.be/tags/telnet" rel="nofollow noopener" target="_blank">#telnet</a> <a href="https://mk.absturztau.be/tags/ssh" rel="nofollow noopener" target="_blank">#ssh</a> <a href="https://mk.absturztau.be/tags/bitvise" rel="nofollow noopener" target="_blank">#bitvise</a> <a href="https://mk.absturztau.be/tags/putty" rel="nofollow noopener" target="_blank">#putty</a> <a href="https://mk.absturztau.be/tags/blog" rel="nofollow noopener" target="_blank">#blog</a> <a href="https://mk.absturztau.be/tags/news" rel="nofollow noopener" target="_blank">#news</a> <a href="https://mk.absturztau.be/tags/itnews" rel="nofollow noopener" target="_blank">#itnews</a></p>
Kevin Karhan :verified:<p><span class="h-card" translate="no"><a href="https://oldbytes.space/@drscriptt" class="u-url mention" rel="nofollow noopener" target="_blank">@<span>drscriptt</span></a></span> Naive question: <em>WHEN</em> does the average <a href="https://infosec.space/tags/Internet" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Internet</span></a> <a href="https://infosec.space/tags/user" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>user</span></a> ever open up a webpage with an <a href="https://infosec.space/tags/IP" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>IP</span></a> address instead of a <a href="https://infosec.space/tags/domain" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>domain</span></a> or even <a href="https://infosec.space/tags/FQDN" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>FQDN</span></a>?</p><ul><li>Serioisly, the only cases I saw were either some old, non-public - facing server in some B2B/API setting <em>or</em> a test that <a href="https://infosec.space/tags/httpd" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>httpd</span></a> / <a href="https://infosec.space/tags/ngnix" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>ngnix</span></a> / <a href="https://infosec.space/tags/ssh" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>ssh</span></a> / … function properly on like a <a href="https://infosec.space/tags/VPS" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>VPS</span></a> and that the <a href="https://infosec.space/tags/DNS" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>DNS</span></a> hasn't been updated (yet!) to include said host / FQDN in the records.</li></ul><p>The Idea if !SSL / <a href="https://infosec.space/tags/TLD" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>TLD</span></a> for <a href="https://infosec.space/tags/IPaddresses" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>IPaddresses</span></a> makes me <a href="https://www.youtube.com/watch?v=g3j9muCo4o0" rel="nofollow noopener" target="_blank">feel like Jeff Goldblum!</a></p>
Mad A. Argon :qurio:<p>Another <a href="https://is-a.cat/tags/ssh" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>ssh</span></a> <a href="https://is-a.cat/tags/creature" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>creature</span></a>... For some reason I KNEW it was peacock tail, not e.g. fluffy fox tail :blobcatjoy: </p><p><a href="https://is-a.cat/tags/drawing" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>drawing</span></a> <a href="https://is-a.cat/tags/art" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>art</span></a> <a href="https://is-a.cat/tags/MastoArt" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>MastoArt</span></a> <a href="https://is-a.cat/tags/CreativeToots" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>CreativeToots</span></a> <a href="https://is-a.cat/tags/krita" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>krita</span></a> <a href="https://is-a.cat/tags/ArtWithOpenSource" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>ArtWithOpenSource</span></a> <a href="https://is-a.cat/tags/randomart" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>randomart</span></a></p>
matthew - retroedge.techGood morning. <br><br>Anyone know of a guide for generating an SSH key file (.pem or .ppk) for allowing FileZilla (file transfer program) to access a remote server with a key file instead of a password?<br><br>So far, what I have tried has not worked. I am likely missing a step, but not sure what it is. <br><br><a class="hashtag" href="https://social.retroedge.tech/tag/ssh" rel="nofollow noopener" target="_blank">#ssh</a> <a class="hashtag" href="https://social.retroedge.tech/tag/filezilla" rel="nofollow noopener" target="_blank">#filezilla</a> <a class="hashtag" href="https://social.retroedge.tech/tag/sysadmin" rel="nofollow noopener" target="_blank">#sysadmin</a>
Heals :heart_nb:<p>Would anyone with ample <a href="https://indiepocalypse.social/tags/GnuPG" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>GnuPG</span></a> or <a href="https://indiepocalypse.social/tags/OpenPGP" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>OpenPGP</span></a> knowledge know if changing the expiry date of an Authrntication subkey has any effect on the <a href="https://indiepocalypse.social/tags/SSH" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>SSH</span></a>-pubkey gpg-agent published for that subkey?</p><p>I’m trying to decide if I want to have my subkeys - which are stored on a hardware key - expire or not…</p>
House Panther :verified_paw:<p>Sometimes really amazing things happen. I got some <a href="https://goblackcat.social/tags/SSH" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>SSH</span></a> intrusion attempts coming from a virtual machine on a network controlled by a company local to my home city of Wilmington, DE. So naturally this piqued my curiosity and did some research on the company.</p><p>They're small but doing some interesting stuff so I took the opportunity to report the intrusion attempt in a very polite and friendly way. At the same time, I expressed interest in working for them part time because nothing ventured is nothing gained. I think I am qualified to be a Linux admin for them. So why the hell not!? Linux is after all my passion.</p>
Royal Apps GmbH<p>Need to reboot a server but want to pick up right where you left off?&nbsp;👀&nbsp;No problem — just head to Settings (macOS) or Options (Windows), find the “Behavior” section, and enable the setting&nbsp;💡</p><p><a href="https://dotnet.social/tags/automation" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>automation</span></a> <a href="https://dotnet.social/tags/digitaltransformation" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>digitaltransformation</span></a> <a href="https://dotnet.social/tags/productivity" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>productivity</span></a> <a href="https://dotnet.social/tags/Itops" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Itops</span></a> <a href="https://dotnet.social/tags/remotemanagement" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>remotemanagement</span></a> <a href="https://dotnet.social/tags/technology" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>technology</span></a> <a href="https://dotnet.social/tags/software" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>software</span></a> <a href="https://dotnet.social/tags/productivity" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>productivity</span></a> <a href="https://dotnet.social/tags/rdp" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>rdp</span></a> <a href="https://dotnet.social/tags/ssh" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>ssh</span></a></p>
Marcus Rohrmoser 🌻<p><a href="https://digitalcourage.social/tags/Show" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Show</span></a>: Personal video <a href="https://digitalcourage.social/tags/unoffice" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>unoffice</span></a> hours <a href="https://digitalcourage.social/tags/booking" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>booking</span></a> system.<br><a href="https://mro.name/sprechstunde/" rel="nofollow noopener" translate="no" target="_blank"><span class="invisible">https://</span><span class="">mro.name/sprechstunde/</span><span class="invisible"></span></a><br>Runs fine on shared hosting (leveraging <a href="https://digitalcourage.social/tags/RFC3875" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>RFC3875</span></a> <a href="https://digitalcourage.social/tags/CGI" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>CGI</span></a> and <a href="https://digitalcourage.social/tags/ssh" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>ssh</span></a>)<br>¹ <a href="https://mro.name/b5zef29" rel="nofollow noopener" translate="no" target="_blank"><span class="invisible">https://</span><span class="">mro.name/b5zef29</span><span class="invisible"></span></a></p>

The amazing openpgp-card-tools(1) and openpgp-card-ssh-agent(2) compile and work perfectly fine on FreeBSD 14.3-RELEASE.

Can properly use my OpenPGP card to authenticate against SSH servers and use oct to manage my cards.

The only preperations, I had to make in order for it to work:

pkg install pcsc-lite pcsc-tools ccid
sysrc pcscd_enable="YES"

Amazing! I love those utilities from @hko

1: crates.io/crates/openpgp-card-
2: crates.io/crates/openpgp-card-