Fingerprint Activation on Ubuntu 18.04 Announcing the arrival of Valued Associate #679: Cesar Manara Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern)Using Fingerprint reader in 16.04Use fingerprint authentication not only for loginHow do I get fingerprint working?fingerprint-gui and 18.04 login issueFingerprint-GUI login ISSUE with new 18.04 LTSHow to setup fingerprint login on dell inspiron 5370Validity VFS301 Fingerprint reader I cannot enroll more than one fingerprintUnlock keyring with fingerprint - Ubuntu 18.10Keyring password window not showing up after using fingerprint reader at startupFingerprint support for Dell vostro 3578 in Ubuntu 18.04Fingerprint reader in ubuntu 18.04Dell Inspiron 5570 Fingerprint Sensor Driver
How to react to hostile behavior from a senior developer?
Fantasy story; one type of magic grows in power with use, but the more powerful they are, they more they are drawn to travel to their source
Is it a good idea to use CNN to classify 1D signal?
How to tell that you are a giant?
What's the meaning of "fortified infraction restraint"?
Trademark violation for app?
Denied boarding although I have proper visa and documentation. To whom should I make a complaint?
How does the math work when buying airline miles?
Is safe to use va_start macro with this as parameter?
Is there a kind of relay only consumes power when switching?
Can a party unilaterally change candidates in preparation for a General election?
An adverb for when you're not exaggerating
When a candle burns, why does the top of wick glow if bottom of flame is hottest?
Old style "caution" boxes
How do pianists reach extremely loud dynamics?
Amount of permutations on an NxNxN Rubik's Cube
How to find all the available tools in mac terminal?
Why do we bend a book to keep it straight?
Should I use a zero-interest credit card for a large one-time purchase?
How would a mousetrap for use in space work?
Has negative voting ever been officially implemented in elections, or seriously proposed, or even studied?
why is Nikon 1.4g better when Nikon 1.8g is sharper?
What are the out-of-universe reasons for the references to Toby Maguire-era Spider-Man in ITSV
What is homebrew?
Fingerprint Activation on Ubuntu 18.04
Announcing the arrival of Valued Associate #679: Cesar Manara
Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern)Using Fingerprint reader in 16.04Use fingerprint authentication not only for loginHow do I get fingerprint working?fingerprint-gui and 18.04 login issueFingerprint-GUI login ISSUE with new 18.04 LTSHow to setup fingerprint login on dell inspiron 5370Validity VFS301 Fingerprint reader I cannot enroll more than one fingerprintUnlock keyring with fingerprint - Ubuntu 18.10Keyring password window not showing up after using fingerprint reader at startupFingerprint support for Dell vostro 3578 in Ubuntu 18.04Fingerprint reader in ubuntu 18.04Dell Inspiron 5570 Fingerprint Sensor Driver
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
I have a HP Elitebook 2530P.
I have a problem to activate the fingerprint sensor for the login. can anybody help me? I use Ubuntu 18.04
login 18.04
add a comment |
I have a HP Elitebook 2530P.
I have a problem to activate the fingerprint sensor for the login. can anybody help me? I use Ubuntu 18.04
login 18.04
Have you tried some driver for your fingerprint?
– Satria H R Harsono
Jun 25 '18 at 11:29
yes, but i cant find the ubuntu version for the elitebook
– Flen- Tiix
Jun 25 '18 at 11:35
add a comment |
I have a HP Elitebook 2530P.
I have a problem to activate the fingerprint sensor for the login. can anybody help me? I use Ubuntu 18.04
login 18.04
I have a HP Elitebook 2530P.
I have a problem to activate the fingerprint sensor for the login. can anybody help me? I use Ubuntu 18.04
login 18.04
login 18.04
edited Jun 25 '18 at 22:30
Satria H R Harsono
501111
501111
asked Jun 25 '18 at 11:23
Flen- TiixFlen- Tiix
26112
26112
Have you tried some driver for your fingerprint?
– Satria H R Harsono
Jun 25 '18 at 11:29
yes, but i cant find the ubuntu version for the elitebook
– Flen- Tiix
Jun 25 '18 at 11:35
add a comment |
Have you tried some driver for your fingerprint?
– Satria H R Harsono
Jun 25 '18 at 11:29
yes, but i cant find the ubuntu version for the elitebook
– Flen- Tiix
Jun 25 '18 at 11:35
Have you tried some driver for your fingerprint?
– Satria H R Harsono
Jun 25 '18 at 11:29
Have you tried some driver for your fingerprint?
– Satria H R Harsono
Jun 25 '18 at 11:29
yes, but i cant find the ubuntu version for the elitebook
– Flen- Tiix
Jun 25 '18 at 11:35
yes, but i cant find the ubuntu version for the elitebook
– Flen- Tiix
Jun 25 '18 at 11:35
add a comment |
4 Answers
4
active
oldest
votes
I did this on my fresh Ubuntu 18.04 - dell vostro:
Install the applications needed:
sudo apt install -y fprintd libpam-fprintd
Then go to settings/users and enable the Fingerprint Login. You may need to reboot.
You may want to change the PAM configuration to use fingerprint for sudo:
sudo pam-auth-update
And check the Fingerprint authentication option. So when you use sudo it will ask to fingerprint. If you wait the fingerprint timeout it will ask for standard password.
add a comment |
I have not tested the answers that Satria H R Harsono links to, but I noticed that those require the use of a PPA. My solution should get you up and running without the PPA. Even better, you don't have to hit enter or the login button after swiping your finger. It just logs in automatically.
First of all, make sure that your fingerprint reader is recognized. These typically show up as USB devices. Run lsusb
$ lsusb
Bus 004 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub
Bus 003 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub
...
Bus 001 Device 009: ID 0483:2016 STMicroelectronics Fingerprint Reader
...
Bus 001 Device 002: ID 058f:6366 Alcor Micro Corp. Multi Flash Reader
Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
You can see that my system detects my attached fingerprint reader as an STMicroelectronics Fingerprint Reader. From here all I need to do is install some programs and modify a configuration file.
- Install the applications needed.
sudo apt install -y fprintd libpam-fprintd
- Once install finishes, open /etc/pam.d/common-auth for editing (
sudo nano /etc/pam.d/common-auth
). Find the line (line 17 on my system) that readsauth [success=1 default=ignore] pam_unix.so nullok_secure
and modify the file adding the line shown below in bold. Make sure the order of these lines is the same as shown here.auth [success=2 default=ignore] pam_fprintd.so max_tries=1 timeout=10
Save the file (Ctrl+Shift+X, Y, Enter).
auth [success=1 default=ignore] pam_unix.so nullok_secure - Finally, enroll your fingerprint with the following command
fprintd-enroll $USER
After running the command, swipe your finger across the reader 3 times to enroll your fingerprint.
That's all there is to it. You should now be able to use your fingerprint reader to log in or to authenticate (for things like installations) post-login.
add a comment |
Do you refer to use your fingerprint reader in Ubuntu for login? I think you missed this answer https://askubuntu.com/a/872187/275849
Or do you prefer to use your fingerprint reader for any authentication? Check this out https://askubuntu.com/a/1040609/275849
add a comment |
I've just configured Elan's fingerprint device on my Xiaomi Notebook Pro under Ubuntu 18.04 with latest upgrades. Official version of libfprint
which coming with Ubuntu is not supporting Elan's device, so I use to build iafilatov's version. Maybe it can be useful for HP 2530 by changing vendor ID according to lsusb's output following this manual.
In my case fingerprint-gui crashes on successful verification with iafilatov's libfprint, so I am using fprintd utilities only
Install fprintd and enable it for sudo
sudo apt install -y fprintd libpam-fprintd
sudo pam-auth-updateUpdate
libfprint
building and installing iafilatov's libfprint. See README.md for build release version.Update symbolic link
/usr/lib/libfprint.so.0
->/usr/local/lib/libfprint.so.0.0.0
(to the newly installed iafilatov's build.Allow fingerprint enrolling to user as follows:
- Create /lib/udev/rules.d/40-libfprint0-custom.rules as follows:
ATTRSidVendor=="04f3", ATTRSidProduct=="0c1a", MODE="0664", GROUP="plugdev"
Vendor & product IDs can be found in
lsusb
output, search for Elan line smth likeBus 001 Device 005: ID 04f3:0c1a Elan Microelectronics Corp.
- Add your
$USER
toplugdev
group:usermod -a -G plugdev $USER
- Reboot
- Create /lib/udev/rules.d/40-libfprint0-custom.rules as follows:
- Enroll fingerprints:
fprintd-enroll
- Verify fingerprint matching
fprintd-verify
- Done. You can check it by calling
sudo
or while Ubuntu session login (may need reboot):
New contributor
add a comment |
Your Answer
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "89"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1049526%2ffingerprint-activation-on-ubuntu-18-04%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
4 Answers
4
active
oldest
votes
4 Answers
4
active
oldest
votes
active
oldest
votes
active
oldest
votes
I did this on my fresh Ubuntu 18.04 - dell vostro:
Install the applications needed:
sudo apt install -y fprintd libpam-fprintd
Then go to settings/users and enable the Fingerprint Login. You may need to reboot.
You may want to change the PAM configuration to use fingerprint for sudo:
sudo pam-auth-update
And check the Fingerprint authentication option. So when you use sudo it will ask to fingerprint. If you wait the fingerprint timeout it will ask for standard password.
add a comment |
I did this on my fresh Ubuntu 18.04 - dell vostro:
Install the applications needed:
sudo apt install -y fprintd libpam-fprintd
Then go to settings/users and enable the Fingerprint Login. You may need to reboot.
You may want to change the PAM configuration to use fingerprint for sudo:
sudo pam-auth-update
And check the Fingerprint authentication option. So when you use sudo it will ask to fingerprint. If you wait the fingerprint timeout it will ask for standard password.
add a comment |
I did this on my fresh Ubuntu 18.04 - dell vostro:
Install the applications needed:
sudo apt install -y fprintd libpam-fprintd
Then go to settings/users and enable the Fingerprint Login. You may need to reboot.
You may want to change the PAM configuration to use fingerprint for sudo:
sudo pam-auth-update
And check the Fingerprint authentication option. So when you use sudo it will ask to fingerprint. If you wait the fingerprint timeout it will ask for standard password.
I did this on my fresh Ubuntu 18.04 - dell vostro:
Install the applications needed:
sudo apt install -y fprintd libpam-fprintd
Then go to settings/users and enable the Fingerprint Login. You may need to reboot.
You may want to change the PAM configuration to use fingerprint for sudo:
sudo pam-auth-update
And check the Fingerprint authentication option. So when you use sudo it will ask to fingerprint. If you wait the fingerprint timeout it will ask for standard password.
edited Nov 14 '18 at 18:28
answered Nov 14 '18 at 18:21
Jairo RotavaJairo Rotava
9113
9113
add a comment |
add a comment |
I have not tested the answers that Satria H R Harsono links to, but I noticed that those require the use of a PPA. My solution should get you up and running without the PPA. Even better, you don't have to hit enter or the login button after swiping your finger. It just logs in automatically.
First of all, make sure that your fingerprint reader is recognized. These typically show up as USB devices. Run lsusb
$ lsusb
Bus 004 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub
Bus 003 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub
...
Bus 001 Device 009: ID 0483:2016 STMicroelectronics Fingerprint Reader
...
Bus 001 Device 002: ID 058f:6366 Alcor Micro Corp. Multi Flash Reader
Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
You can see that my system detects my attached fingerprint reader as an STMicroelectronics Fingerprint Reader. From here all I need to do is install some programs and modify a configuration file.
- Install the applications needed.
sudo apt install -y fprintd libpam-fprintd
- Once install finishes, open /etc/pam.d/common-auth for editing (
sudo nano /etc/pam.d/common-auth
). Find the line (line 17 on my system) that readsauth [success=1 default=ignore] pam_unix.so nullok_secure
and modify the file adding the line shown below in bold. Make sure the order of these lines is the same as shown here.auth [success=2 default=ignore] pam_fprintd.so max_tries=1 timeout=10
Save the file (Ctrl+Shift+X, Y, Enter).
auth [success=1 default=ignore] pam_unix.so nullok_secure - Finally, enroll your fingerprint with the following command
fprintd-enroll $USER
After running the command, swipe your finger across the reader 3 times to enroll your fingerprint.
That's all there is to it. You should now be able to use your fingerprint reader to log in or to authenticate (for things like installations) post-login.
add a comment |
I have not tested the answers that Satria H R Harsono links to, but I noticed that those require the use of a PPA. My solution should get you up and running without the PPA. Even better, you don't have to hit enter or the login button after swiping your finger. It just logs in automatically.
First of all, make sure that your fingerprint reader is recognized. These typically show up as USB devices. Run lsusb
$ lsusb
Bus 004 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub
Bus 003 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub
...
Bus 001 Device 009: ID 0483:2016 STMicroelectronics Fingerprint Reader
...
Bus 001 Device 002: ID 058f:6366 Alcor Micro Corp. Multi Flash Reader
Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
You can see that my system detects my attached fingerprint reader as an STMicroelectronics Fingerprint Reader. From here all I need to do is install some programs and modify a configuration file.
- Install the applications needed.
sudo apt install -y fprintd libpam-fprintd
- Once install finishes, open /etc/pam.d/common-auth for editing (
sudo nano /etc/pam.d/common-auth
). Find the line (line 17 on my system) that readsauth [success=1 default=ignore] pam_unix.so nullok_secure
and modify the file adding the line shown below in bold. Make sure the order of these lines is the same as shown here.auth [success=2 default=ignore] pam_fprintd.so max_tries=1 timeout=10
Save the file (Ctrl+Shift+X, Y, Enter).
auth [success=1 default=ignore] pam_unix.so nullok_secure - Finally, enroll your fingerprint with the following command
fprintd-enroll $USER
After running the command, swipe your finger across the reader 3 times to enroll your fingerprint.
That's all there is to it. You should now be able to use your fingerprint reader to log in or to authenticate (for things like installations) post-login.
add a comment |
I have not tested the answers that Satria H R Harsono links to, but I noticed that those require the use of a PPA. My solution should get you up and running without the PPA. Even better, you don't have to hit enter or the login button after swiping your finger. It just logs in automatically.
First of all, make sure that your fingerprint reader is recognized. These typically show up as USB devices. Run lsusb
$ lsusb
Bus 004 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub
Bus 003 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub
...
Bus 001 Device 009: ID 0483:2016 STMicroelectronics Fingerprint Reader
...
Bus 001 Device 002: ID 058f:6366 Alcor Micro Corp. Multi Flash Reader
Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
You can see that my system detects my attached fingerprint reader as an STMicroelectronics Fingerprint Reader. From here all I need to do is install some programs and modify a configuration file.
- Install the applications needed.
sudo apt install -y fprintd libpam-fprintd
- Once install finishes, open /etc/pam.d/common-auth for editing (
sudo nano /etc/pam.d/common-auth
). Find the line (line 17 on my system) that readsauth [success=1 default=ignore] pam_unix.so nullok_secure
and modify the file adding the line shown below in bold. Make sure the order of these lines is the same as shown here.auth [success=2 default=ignore] pam_fprintd.so max_tries=1 timeout=10
Save the file (Ctrl+Shift+X, Y, Enter).
auth [success=1 default=ignore] pam_unix.so nullok_secure - Finally, enroll your fingerprint with the following command
fprintd-enroll $USER
After running the command, swipe your finger across the reader 3 times to enroll your fingerprint.
That's all there is to it. You should now be able to use your fingerprint reader to log in or to authenticate (for things like installations) post-login.
I have not tested the answers that Satria H R Harsono links to, but I noticed that those require the use of a PPA. My solution should get you up and running without the PPA. Even better, you don't have to hit enter or the login button after swiping your finger. It just logs in automatically.
First of all, make sure that your fingerprint reader is recognized. These typically show up as USB devices. Run lsusb
$ lsusb
Bus 004 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub
Bus 003 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub
...
Bus 001 Device 009: ID 0483:2016 STMicroelectronics Fingerprint Reader
...
Bus 001 Device 002: ID 058f:6366 Alcor Micro Corp. Multi Flash Reader
Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
You can see that my system detects my attached fingerprint reader as an STMicroelectronics Fingerprint Reader. From here all I need to do is install some programs and modify a configuration file.
- Install the applications needed.
sudo apt install -y fprintd libpam-fprintd
- Once install finishes, open /etc/pam.d/common-auth for editing (
sudo nano /etc/pam.d/common-auth
). Find the line (line 17 on my system) that readsauth [success=1 default=ignore] pam_unix.so nullok_secure
and modify the file adding the line shown below in bold. Make sure the order of these lines is the same as shown here.auth [success=2 default=ignore] pam_fprintd.so max_tries=1 timeout=10
Save the file (Ctrl+Shift+X, Y, Enter).
auth [success=1 default=ignore] pam_unix.so nullok_secure - Finally, enroll your fingerprint with the following command
fprintd-enroll $USER
After running the command, swipe your finger across the reader 3 times to enroll your fingerprint.
That's all there is to it. You should now be able to use your fingerprint reader to log in or to authenticate (for things like installations) post-login.
answered Oct 10 '18 at 2:14
b_laoshib_laoshi
2,7211029
2,7211029
add a comment |
add a comment |
Do you refer to use your fingerprint reader in Ubuntu for login? I think you missed this answer https://askubuntu.com/a/872187/275849
Or do you prefer to use your fingerprint reader for any authentication? Check this out https://askubuntu.com/a/1040609/275849
add a comment |
Do you refer to use your fingerprint reader in Ubuntu for login? I think you missed this answer https://askubuntu.com/a/872187/275849
Or do you prefer to use your fingerprint reader for any authentication? Check this out https://askubuntu.com/a/1040609/275849
add a comment |
Do you refer to use your fingerprint reader in Ubuntu for login? I think you missed this answer https://askubuntu.com/a/872187/275849
Or do you prefer to use your fingerprint reader for any authentication? Check this out https://askubuntu.com/a/1040609/275849
Do you refer to use your fingerprint reader in Ubuntu for login? I think you missed this answer https://askubuntu.com/a/872187/275849
Or do you prefer to use your fingerprint reader for any authentication? Check this out https://askubuntu.com/a/1040609/275849
answered Jun 25 '18 at 11:37
Satria H R HarsonoSatria H R Harsono
501111
501111
add a comment |
add a comment |
I've just configured Elan's fingerprint device on my Xiaomi Notebook Pro under Ubuntu 18.04 with latest upgrades. Official version of libfprint
which coming with Ubuntu is not supporting Elan's device, so I use to build iafilatov's version. Maybe it can be useful for HP 2530 by changing vendor ID according to lsusb's output following this manual.
In my case fingerprint-gui crashes on successful verification with iafilatov's libfprint, so I am using fprintd utilities only
Install fprintd and enable it for sudo
sudo apt install -y fprintd libpam-fprintd
sudo pam-auth-updateUpdate
libfprint
building and installing iafilatov's libfprint. See README.md for build release version.Update symbolic link
/usr/lib/libfprint.so.0
->/usr/local/lib/libfprint.so.0.0.0
(to the newly installed iafilatov's build.Allow fingerprint enrolling to user as follows:
- Create /lib/udev/rules.d/40-libfprint0-custom.rules as follows:
ATTRSidVendor=="04f3", ATTRSidProduct=="0c1a", MODE="0664", GROUP="plugdev"
Vendor & product IDs can be found in
lsusb
output, search for Elan line smth likeBus 001 Device 005: ID 04f3:0c1a Elan Microelectronics Corp.
- Add your
$USER
toplugdev
group:usermod -a -G plugdev $USER
- Reboot
- Create /lib/udev/rules.d/40-libfprint0-custom.rules as follows:
- Enroll fingerprints:
fprintd-enroll
- Verify fingerprint matching
fprintd-verify
- Done. You can check it by calling
sudo
or while Ubuntu session login (may need reboot):
New contributor
add a comment |
I've just configured Elan's fingerprint device on my Xiaomi Notebook Pro under Ubuntu 18.04 with latest upgrades. Official version of libfprint
which coming with Ubuntu is not supporting Elan's device, so I use to build iafilatov's version. Maybe it can be useful for HP 2530 by changing vendor ID according to lsusb's output following this manual.
In my case fingerprint-gui crashes on successful verification with iafilatov's libfprint, so I am using fprintd utilities only
Install fprintd and enable it for sudo
sudo apt install -y fprintd libpam-fprintd
sudo pam-auth-updateUpdate
libfprint
building and installing iafilatov's libfprint. See README.md for build release version.Update symbolic link
/usr/lib/libfprint.so.0
->/usr/local/lib/libfprint.so.0.0.0
(to the newly installed iafilatov's build.Allow fingerprint enrolling to user as follows:
- Create /lib/udev/rules.d/40-libfprint0-custom.rules as follows:
ATTRSidVendor=="04f3", ATTRSidProduct=="0c1a", MODE="0664", GROUP="plugdev"
Vendor & product IDs can be found in
lsusb
output, search for Elan line smth likeBus 001 Device 005: ID 04f3:0c1a Elan Microelectronics Corp.
- Add your
$USER
toplugdev
group:usermod -a -G plugdev $USER
- Reboot
- Create /lib/udev/rules.d/40-libfprint0-custom.rules as follows:
- Enroll fingerprints:
fprintd-enroll
- Verify fingerprint matching
fprintd-verify
- Done. You can check it by calling
sudo
or while Ubuntu session login (may need reboot):
New contributor
add a comment |
I've just configured Elan's fingerprint device on my Xiaomi Notebook Pro under Ubuntu 18.04 with latest upgrades. Official version of libfprint
which coming with Ubuntu is not supporting Elan's device, so I use to build iafilatov's version. Maybe it can be useful for HP 2530 by changing vendor ID according to lsusb's output following this manual.
In my case fingerprint-gui crashes on successful verification with iafilatov's libfprint, so I am using fprintd utilities only
Install fprintd and enable it for sudo
sudo apt install -y fprintd libpam-fprintd
sudo pam-auth-updateUpdate
libfprint
building and installing iafilatov's libfprint. See README.md for build release version.Update symbolic link
/usr/lib/libfprint.so.0
->/usr/local/lib/libfprint.so.0.0.0
(to the newly installed iafilatov's build.Allow fingerprint enrolling to user as follows:
- Create /lib/udev/rules.d/40-libfprint0-custom.rules as follows:
ATTRSidVendor=="04f3", ATTRSidProduct=="0c1a", MODE="0664", GROUP="plugdev"
Vendor & product IDs can be found in
lsusb
output, search for Elan line smth likeBus 001 Device 005: ID 04f3:0c1a Elan Microelectronics Corp.
- Add your
$USER
toplugdev
group:usermod -a -G plugdev $USER
- Reboot
- Create /lib/udev/rules.d/40-libfprint0-custom.rules as follows:
- Enroll fingerprints:
fprintd-enroll
- Verify fingerprint matching
fprintd-verify
- Done. You can check it by calling
sudo
or while Ubuntu session login (may need reboot):
New contributor
I've just configured Elan's fingerprint device on my Xiaomi Notebook Pro under Ubuntu 18.04 with latest upgrades. Official version of libfprint
which coming with Ubuntu is not supporting Elan's device, so I use to build iafilatov's version. Maybe it can be useful for HP 2530 by changing vendor ID according to lsusb's output following this manual.
In my case fingerprint-gui crashes on successful verification with iafilatov's libfprint, so I am using fprintd utilities only
Install fprintd and enable it for sudo
sudo apt install -y fprintd libpam-fprintd
sudo pam-auth-updateUpdate
libfprint
building and installing iafilatov's libfprint. See README.md for build release version.Update symbolic link
/usr/lib/libfprint.so.0
->/usr/local/lib/libfprint.so.0.0.0
(to the newly installed iafilatov's build.Allow fingerprint enrolling to user as follows:
- Create /lib/udev/rules.d/40-libfprint0-custom.rules as follows:
ATTRSidVendor=="04f3", ATTRSidProduct=="0c1a", MODE="0664", GROUP="plugdev"
Vendor & product IDs can be found in
lsusb
output, search for Elan line smth likeBus 001 Device 005: ID 04f3:0c1a Elan Microelectronics Corp.
- Add your
$USER
toplugdev
group:usermod -a -G plugdev $USER
- Reboot
- Create /lib/udev/rules.d/40-libfprint0-custom.rules as follows:
- Enroll fingerprints:
fprintd-enroll
- Verify fingerprint matching
fprintd-verify
- Done. You can check it by calling
sudo
or while Ubuntu session login (may need reboot):
New contributor
edited Apr 14 at 13:17
New contributor
answered Apr 13 at 13:03
em2erem2er
1013
1013
New contributor
New contributor
add a comment |
add a comment |
Thanks for contributing an answer to Ask Ubuntu!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1049526%2ffingerprint-activation-on-ubuntu-18-04%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Have you tried some driver for your fingerprint?
– Satria H R Harsono
Jun 25 '18 at 11:29
yes, but i cant find the ubuntu version for the elitebook
– Flen- Tiix
Jun 25 '18 at 11:35