systemctl enable fprintd.service 失败

systemctl enable fprintd.service 失败

Ubuntu 19.10

fprintd.service 文件存在于/usr/lib/systemd/system

sudo systemctl start fprintd.service工作-启动守护进程

我想要fprintd.service在登录前启动

sudo systemctl enable fprintd.service给我

$ sudo systemctl enable fprintd.service
The unit files have no installation config (WantedBy=, RequiredBy=, Also=,
Alias= settings in the [Install] section, and DefaultInstance= for template
units).

这意味着它们不适合使用 systemctl 启用。

怎么修???

答案1

您所要做的就是按照消息的指示进行操作。fprintd.service在编辑器中打开文件,然后在部分下添加以下行[Install]

[Install]
WantedBy=multi-user.target

在大多数情况下,这个目标都是不错的选择。如果这个目标不起作用或者您想要另一个目标,请从此列表中选择一个

systemctl list-units --type target

相关内容