Skip to content

Instantly share code, notes, and snippets.

@stefanovazzocell
Created November 19, 2020 00:55
Show Gist options
  • Save stefanovazzocell/22798cd9f5df331020c6beb1b3020369 to your computer and use it in GitHub Desktop.
Save stefanovazzocell/22798cd9f5df331020c6beb1b3020369 to your computer and use it in GitHub Desktop.
Ubuntu / PopOS Fingerprint Support - Dell XPS 15 9500
#!/usr/bin/env bash
echo 'Adding Dell repository...'
# https://www.dell.com/community/XPS/XPS-13-9300-Does-fingerprint-reader-work-on-linux/td-p/7514958
sudo sh -c 'cat > /etc/apt/sources.list.d/focal-dell.list << EOF
deb http://dell.archive.canonical.com/updates/ focal-dell public
# deb-src http://dell.archive.canonical.com/updates/ focal-dell public
deb http://dell.archive.canonical.com/updates/ focal-oem public
# deb-src http://dell.archive.canonical.com/updates/ focal-oem public
deb http://dell.archive.canonical.com/updates/ focal-somerville public
# deb-src http://dell.archive.canonical.com/updates/ focal-somerville public
deb http://dell.archive.canonical.com/updates/ focal-somerville-melisa public
# deb-src http://dell.archive.canonical.com/updates focal-somerville-melisa public
EOF'
sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys F9FDA6BED73CDC22
echo 'Installing Fingerprint Drivers...'
sudo apt update
sudo apt -y install libfprint-2-tod1-goodix
@AKgit834
Copy link

AKgit834 commented Oct 4, 2023

Tested on Dell XPS 15 9500 with PopOS 20.10. It should work fine with Ubuntu and derivatives as well as with other Dell laptop using the goodix fingerprint hardware (Dell XPS 13/15/17)

is there any other script available for asus x515 series laptop

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment