Today I configured the fingerprint reader on my Thinkpad X201. I will not describe the process of configuring the fingerprint reader on FreeBSD as it has been documented many times on the Internet. Though if you want I may describe the process in a separate article, just tell me.
After the configuration, everybody from the display manager to su asked to authenticate with the reader. So it was fine. Except for xscreensaver which still confined itself password authentification. There were no configuration for xscreensaver in /etc/pam.d so I initially thought that it fell back on the “other” configuration. Therefore I added one for xscreensaver but it didn’t change anything.
However I installed xscreensaver as a package, and not from the ports. It turns out that the xscreensaver package does not enable the PAM option. You can check that via pkg info xscreensaver
or use ldd /usr/local/bin/xscreensaver
to check if xscreensaver is effectively linked with libpam.so.
So you can reinstall xscreensaver from the ports and configure it with the PAM option enabled. However I still wonder why they disabled this by default. I still have a problem with PAM which sometime does not detect the reader and cannot even authenticate with pam_unix. I don’t know what is the cause of this, but I’ll find out.
So! Configuring fingerprint reader in FreeBSD has been many times published on the Internet? Would be very nice of you to point to at least one source, or at least the one YOU used for it. Thanks in advance.
Should have precised that most of the documentation comes from Linux where the process is very similar. Check for example:
http://wiki.archlinux.org/index.php/Fprint
You may have to adapt this to FreeBSD though.
I just posted an article that describe the configuration specifically for FreeBSD:
http://www.hauweele.net/~gawen/blog/?p=408
Yes, great thanks, I’ve noticed that :)). I’ll look deeper into it.