在树莓派中启动时启动智能卡服务

问题描述 投票:0回答:1

我有一个连接到智能卡读取器的树莓派(OMNIKEY 3121)。我安装了所需的所有驱动程序和库。为了使用读卡器,必须激活其服务:

sudo systemctl start pcscd

我想在启动时启动服务。我尝试使用此命令:

sudo su
systemctl enable pcscd

上一条命令返回此:

Created symlink /etc/systemd/system/sockets.target.wants/pcscd.socket -> /lib/systemd/system/pcscd.socket

重新启动后,服务处于不活动状态。

您知道如何在启动时启用此服务吗?

linux raspberry-pi startup smartcard
1个回答
0
投票

sudo systemctl enable pcscd将在启动时将其激活。

© www.soinside.com 2019 - 2024. All rights reserved.