Goodix fingerprint driver linux?

Bus 001 Device 003: ID 27c6:5395 Shenzhen Goodix Technology Co.,Ltd. Fingerprint Reader 

I am unable to find the driver for this fingerprint scanner.

1

2 Answers

There is something out there :

I did install it, and it works. Recognition is not very fast, but it do work.

sudo sh -c 'cat > /etc/apt/sources.list.d/focal-dell.list << EOF
deb focal-dell public
# deb-src focal-dell public
deb focal-oem public
# deb-src focal-oem public
deb focal-somerville public
# deb-src focal-somerville public
deb focal-somerville-melisa public
# deb-src focal-somerville-melisa public
EOF'
sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys F9FDA6BED73CDC22
sudo apt update -qq
sudo apt install oem-somerville-melisa-meta libfprint-2-tod1-goodix oem-somerville-meta tlp-config -y

That was the repos for Ubuntu focal, but it works for newer version as well.

Looking at the results on Linux-Hardware, there is very little support for that particular device at the moment. It seems to be detectable with Kernel versions 5.12 and newer however, looking at the hardware compatibility list, the machines that can detect it are limited to just detection.

Fingerprint sensors are notoriously difficult to support because companies like Shenzen Goodix rarely do anything for operating systems that are not Windows. Even with Windows the driver support is suboptimal. As a result, the teams that work on the fingerprint drivers for Linux are reverse-engineering the hardware only when they have it in their possession.

That said, with Kernel 5.12 having better support to at least detect the device, hopefully there will be an effort to make it work with Ubuntu (and other Linux distributions) in the near future.

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy

You Might Also Like