LinuxCommandLibrary
GitHubF-DroidGoogle Play Store

fprintd

D-Bus fingerprint authentication service

TLDR

Fingerprint enrollment and matching are split tools — list enrolled prints
$ fprintd-list [username]
copy
Enroll a new fingerprint
$ fprintd-enroll [username]
copy
Verify a finger against enrolled data
$ fprintd-verify [username]
copy
Delete enrolled fingerprints
$ fprintd-delete [username]
copy

SYNOPSIS

fprintd is a D-Bus daemon, not a standalone command. Use the related client commands.

DESCRIPTION

fprintd is the fingerprint daemon that provides fingerprint scanning functionality through D-Bus. It acts as a system service managing fingerprint readers and enrolled fingerprint data, allowing applications to authenticate users via fingerprints.The daemon itself runs in the background and is typically started by systemd. Users interact with it through client utilities:fprintd-enroll - Register new fingerprintsfprintd-list - List enrolled fingerprintsfprintd-verify - Verify a fingerprintfprintd-delete - Remove enrolled fingerprintsIntegration with PAM allows fingerprint authentication for login, sudo, and other system authentication points.

INSTALL

sudo dnf install fprintd
copy
sudo pacman -S fprintd
copy
sudo zypper install fprintd
copy
nix profile install nixpkgs#fprintd
copy

CAVEATS

Requires a compatible fingerprint reader supported by libfprint. Not all readers work reliably. Fingerprint data is stored in /var/lib/fprint and should be protected. PAM configuration is required for system authentication integration.

HISTORY

fprintd is part of the fprint project, which provides fingerprint reader support for Linux. The project was started to bring standardized fingerprint authentication to Linux systems, leveraging the libfprint library for hardware abstraction.

SEE ALSO

RESOURCES

Copied to clipboard
Kai