- March 11, 2023
- 7:16 am
- No Comments
How to Enable Fingerprint Login on Ubuntu
Fingerprint login is a convenient and secure way to access your computer without having to remember a password. If you’re an Ubuntu user, you can easily enable fingerprint login using the built-in fingerprint scanner on your laptop or an external fingerprint scanner. In this guide, we’ll show you step-by-step how to enable fingerprint login on Ubuntu using the fprintd and libpam-fprintd packages.
Using fprintd
fprintd is a software component used on Linux-based operating systems for fingerprint authentication. It provides a standard D-Bus interface for applications to access fingerprint readers and perform authentication operations. fprintd also includes a command-line utility for managing fingerprint enrollment and verification.
The fprintd daemon runs in the background and communicates with fingerprint readers through device drivers. When an application requests fingerprint authentication, fprintd coordinates the enrollment or verification process with the reader and returns the result to the application.
fprintd is typically used in conjunction with a graphical interface, such as GNOME’s login manager, to allow users to log in to their accounts using their fingerprints. It is designed to be flexible and extensible, allowing third-party applications to integrate with it using its D-Bus interface.
Step 1: Check Fingerprint Reader
First, check if your laptop has a fingerprint reader. If not, you will need to purchase an external fingerprint scanner that is compatible with Ubuntu.
Step 2: Open Terminal
Open the terminal by pressing Ctrl + Alt + T on your keyboard or by searching for it in the applications menu.
Step 3: Install Packages
Install the necessary packages by running:
sudo apt install fprintd libpam-fprintd
Step 4: Enroll Fingerprints
Once the installation is complete, enroll your fingerprints by running:
fprintd-enroll
Follow the on-screen instructions to enroll your fingerprints. You will need to swipe your finger several times to capture the necessary data.
Step 5: Edit PAM File
Once you have enrolled your fingerprints, edit the PAM configuration file by running:
sudo nano /etc/pam.d/common-auth
This command uses nano. You can use the text editor of your choice. Add the following line to the end of the file:
auth sufficient pam_fprintd.so
Step 6: Save Changes
Save and exit the file by pressing Ctrl + X, then Y, then Enter, if you used nano. If you used a different text editor then use the appropriate method of saving and exiting the file for that editor.
Step 7: Update PAM
Restart the authentication service by running:
sudo pam-auth-update
Step 8: Select Fingerprint Authentication
In the authentication window, select Fingerprint authentication and click on Ok to confirm.
Step 9: Restart Your Computer
Restart your computer and test the fingerprint login by swiping your enrolled finger on the fingerprint reader when prompted.
Conclusion
By following the steps outlined in this guide, you can enable fingerprint login on your Ubuntu system and enjoy a more convenient and secure way to access your computer. With just a few simple commands, you can enroll your fingerprints, edit the PAM configuration file, and restart the authentication service to enable fingerprint login. Whether you’re using an internal or external fingerprint scanner, Ubuntu makes it easy to set up and use this feature.
Please Leave Feedback and Corrections in the Comments
More to Explore
How to Dual Boot Linux and Windows
Dual-booting Linux with Windows, starting with an existing Windows installation, is a popular setup for those who need the versatility of both operating systems. This guide assumes you have already installed Windows and wish to add Linux for a dual-boot setup. If you are starting with an existing Linux installation,
How to Dual Boot Windows and Linux
Dual-booting Windows with Linux, starting with an existing Linux installation, requires careful planning and execution. This guide assumes you have already installed Linux and wish to add Windows for a dual-boot setup. If you are starting with an existing Windows installation, then use this guide: How to Dual Boot Linux
MALIBAL Aon S1 Vs Apple MacBook Pro 13 (M2)
In the competitive landscape of high-performance, thin & light laptops, the MALIBAL Aon S1 and the Apple MacBook Pro 13 (M2) are noteworthy contenders.
How to Set Up and Use a Basic Firewall on Linux
UFW (Uncomplicated Firewall) is a user-friendly front-end for managing iptables firewall rules on Linux systems.
How to Set Up a VPN Server on Linux
A VPN (Virtual Private Network) provides a secure, encrypted connection between your devices and the internet.
How to Install and Use a Terminal Multiplexer on Linux
A terminal multiplexer is a powerful command-line utility that enables users to manage multiple terminal sessions.
How to Set Up a Basic Samba Server on Linux
Samba is a popular open-source software suite that provides seamless file and print services to SMB/CIFS clients.
How to Create and Manage Users and Groups on Linux
User and group management is an essential aspect of maintaining a secure and organized Linux system.
How to Install and Configure a LAMP Stack on Linux
A LAMP stack is a popular software bundle consisting of Linux, Apache, MySQL, and PHP, used for hosting and deploying web applications.