Ubuntu 20.04 中指纹登录设置不可见

Ubuntu 20.04 中指纹登录设置不可见

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

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

另外,我安装了硬件探测发现指纹识别器正在被检测到,如下图所示

"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."
},

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

设置

这个你能帮我吗。

答案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

然后你可以尝试指纹图形用户界面

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

注意: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 中使用指纹读取器

相关内容