- 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 a text editor called 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 Access Google Drive on Ubuntu
Google Drive has become an essential tool for many users, allowing them to store and access files in the cloud and collaborate with others.
10 Linux Terms You Must Know
When getting started with Linux, you’ll encounter a variety of unique terms and concepts that are crucial to understanding the Linux ecosystem.
How to Check Hardware Information on Linux
Getting detailed information about your Linux system’s hardware is essential for troubleshooting, optimizing performance, and upgrading components.
How to Run Android on Ubuntu
Running Android on Linux can be a useful way to access Android apps and games on your Linux machine or test and develop Android applications.
How to Listen to Internet Radio on Linux
Internet radio offers a vast array of music, news, and talk stations from around the world.
How to Recover Deleted Files on Linux
Accidentally deleting important files is a common issue that many users face.
How to Access a Remote Linux Machine From Windows
Accessing a remote Linux machine from a Windows computer can be a useful skill for various tasks.
7 Mistakes New Linux Users Make
Linux is a powerful and versatile operating system that offers a wealth of benefits, including increased security, flexibility, and customization.
How to View WebP Images on Ubuntu
WebP is an image format developed by Google that provides superior compression and faster loading times compared to other image formats.