~ubuntu-branches/ubuntu/karmic/thinkfinger/karmic

« back to all changes in this revision

Viewing changes to INSTALL

  • Committer: Bazaar Package Importer
  • Author(s): Luca Capello
  • Date: 2007-09-15 14:44:23 UTC
  • Revision ID: james.westby@ubuntu.com-20070915144423-6m2api7re19o2wxo
Tags: upstream-0.3
ImportĀ upstreamĀ versionĀ 0.3

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
ThinkFinger 0.3 Installation Instructions
 
2
===============================================================================
 
3
 
 
4
This document describes how compile the ThinkFinger software.
 
5
 
 
6
Software Required For Compilation
 
7
=================================
 
8
 
 
9
The following software must be installed:
 
10
 
 
11
- the GCC compiler (http://www.gnu.org/software/gcc/)
 
12
- libtool (http://www.gnu.org/software/libtool/)
 
13
- pkg-config (http://pkgconfig.freedesktop.org)
 
14
- the Linux-PAM, development files (http://www.kernel.org/pub/linux/libs/pam/)
 
15
- libusb, development files, version >= 0.1.12 (http://libusb.sourceforge.net/)
 
16
 
 
17
To have access to the optional documentation, you also need:
 
18
 
 
19
- doxygen (http://www.stack.nl/~dimitri/doxygen/)
 
20
 
 
21
Kernel Requirements
 
22
===================
 
23
 
 
24
In order to use the the PAM module pam_thinkfinger your Linux kernel has to be
 
25
compiled with uinput support (CONFIG_INPUT_UINPUT).  The location of the uinput
 
26
interface depends on your distribution.  To ensure that your system is properly
 
27
set up, one of the following interfaces have to exist:
 
28
 
 
29
  * /dev/input/uinput
 
30
  * /dev/misc/uinput
 
31
  * /dev/uinput
 
32
 
 
33
If the interface is not there, run:
 
34
 
 
35
  $ modprobe uinput
 
36
 
 
37
Ask your the maintainers of your distribution to automatically load the module.
 
38
 
 
39
Installation Steps
 
40
==================
 
41
 
 
42
Once the necessary software is installed, run:
 
43
 
 
44
  $ ./configure
 
45
  $ make
 
46
  $ make install
 
47
 
 
48
You can enable USB debugging support by running 'configure' with the parameter
 
49
'--enable-usb-debug'.  Example:
 
50
 
 
51
   $ ./configure --enable-usb-debug
 
52
 
 
53
PAM Specific Notes
 
54
==================
 
55
 
 
56
For a proper installation it is very likely that you have to use the parameter
 
57
'--with-securedir=$PAM_MODULES_DIR' when running 'configure'. $PAM_MODULES_DIR
 
58
is the directory where the PAM expects the pluggable authentication modules.
 
59
It is convenient that this directory is '/lib/security'.  Example:
 
60
 
 
61
   $ ./configure --with-securedir=/lib/security
 
62
 
 
63
When building with PAM support you might also want to adjust the parameter
 
64
'--with-birdir'.  The ThinkFinger PAM module uses this directory to look up the
 
65
biometric identification records (bir files).  Example:
 
66
 
 
67
   $ ./configure --with-birdir=/etc/pam_thinkfinger