指纹登录设置在 ubuntu 20.04 中不可见

kch*_*hak 7 fingerprint-reader login 20.04

我正在尝试在运行 Ubuntu 20.04 的笔记本电脑(Dell Inspiron 7577)中启用指纹登录

我已启用设置使用 sudo pam-auth-update

另外,我安装了hw-probe,发现正在检测指纹读取器,如下所示

"usb:27c6-5301" : {
  "Bus" : "USB",
  "Class" : "02-02-01",
  "Device" : "Fingerprint Reader",
  "Driver" : "cdc_acm",
  "SDevice" : "Goodix Fingerprint Device",
  "SVendor" : "HTMicroelectronics",
  "Serial" : "9F73FE10C4F88873C9E942B6B6FB242C",
  "Status" : "detected",
  "Type" : "fingerprint reader",
  "Vendor" : "Shenzhen Goodix Technology Co.,Ltd."
},
Run Code Online (Sandbox Code Playgroud)

我仍然没有在“设置”>“用户”>“登录和身份验证”中看到任何启用指纹登录的选项。

设置

这个你能帮我吗。

san*_*lio 1

首先,您可以尝试goodix_fp_dump执行一些测试。

注意:对您的设备的支持似乎处于灰色地带。资料来源:

  1. https://www.dell.com/community/Linux-General/No-driver-for-fingerprint-scanner-Goodix-GF3208-on-Linux/td-p/6242579
  2. https://gitlab.freedesktop.org/libfprint/libfprint/-/issues/43#note_382609
  3. https://gitlab.freedesktop.org/libfprint/libfprint/-/issues/161

然后,您可以尝试使用指纹 GUI

sudo add-apt-repository ppa:fingerprint/fingerprint-gui
sudo apt-key adv --keyserver keyserver.ubuntu.com --recv EFD5FA852F20733F
sudo apt-get update
sudo apt-get install libbsapi policykit-1-fingerprint-gui fingerprint-gui
Run Code Online (Sandbox Code Playgroud)

注意:Fingerprint-gui 替换了一些软件包。删除它不会恢复原始包,必须手动完成。这不是一个严重的问题。如果其他方法失败了,可能值得尝试。


有关的

  1. https://www.addictivetips.com/ubuntu-linux-tips/enable-fingerprint-scanner-support-on-linux/
  2. https://www.codegrepper.com/code-examples/shell/fingerprint+login+disabled+ubuntu+20.04
  3. 18.04 中的指纹 GUI
  4. 在 16.04 中使用指纹识别器

  • 小心这个。`fingerprint-gui` 存储库没有任何 Focal 版本,并且从源代码编译不适用于 19.10 及更高版本。降级到 18.04 可能是一种选择,尽管不是最佳选择 (2认同)