Update README: document dep on modprobe for kernel tracing
[lttng-tools.git] / README
... / ...
CommitLineData
1LTTng Trace Control
2----------------
3
4Please visit http://lttng.org for more information.
5
6Latest development can be found at:
7
8 * Gitweb : http://git.lttng.org/lttng-tools.git/
9 * Git : git://git.lttng.org/lttng-tools.git
10
11REQUIREMENTS:
12
13 - Linux kernel >= 2.6.27
14 pipe2(), epoll_create1() and SOCK_CLOEXEC are needed to run the session
15 daemon. There were introduce in the Linux 2.6.27
16
17 - liburcu
18 Userspace RCU library, by Mathieu Desnoyers and Paul E. McKenney
19
20 -> Tested with liburcu >= v0.6.6
21
22 * Debian/Ubuntu package: liburcu-dev
23 * Git : git://git.lttng.org/userspace-rcu.git
24 * Website: http://lttng.org/urcu
25
26 - libpopt >= 1.13
27 Library for parsing command line parameters
28
29 * Debian/Ubuntu package: libpopt-dev
30
31 - For kernel tracing: modprobe
32
33For developers using the git tree:
34
35This source tree is based on the autotools suite from GNU to simplify
36portability. Here are some things you should have on your system in order to
37compile the git repository tree :
38
39- GNU autotools (automake >=1.10, autoconf >=2.50, autoheader >=2.50)
40 (make sure your system wide "automake" points to a recent version!)
41- GNU Libtool >=2.2
42 (for more information, go to http://www.gnu.org/software/autoconf/)
43- GNU Gold >= 2.22
44 (Before this version we hit a known bug documented at:
45 http://sourceware.org/bugzilla/show_bug.cgi?id=11317)
46
47If you get the tree from the repository, you will need to use the "bootstrap"
48script in the root of the tree. It calls all the GNU tools needed to prepare the
49tree configuration.
50
51INSTALLATION INSTRUCTIONS:
52
53 - Download, compile and install the prerequisites.
54 Then:
55 $ ./configure
56 $ make
57 $ sudo make install
58 $ sudo ldconfig
59
60 If compiling from the git repository, run ./bootstrap before running
61 the configure script, to generate it.
62
63USAGE:
64
65Please see doc/quickstart.txt to help you start tracing. You can also use the
66-h/--help command on 'lttng' and all other commands offered in this tool (Ex:
67lttng enable-event -h).
68
69PACKAGE CONTENTS:
70
71 This package contains the following elements:
72
73 - liblttngctl
74 The LTTng tracing control library.
75
76 - libsessiond-comm (internal)
77 The lttng-sessiond communication library. In order to talk with
78 lttng-sessiond, this library must be used.
79
80 - libkernel-ctl (internal)
81 Kernel tracer control and ioctl definitions.
82
83 - libconsumer (internal)
84 Library for Kernel and (optionally) UST trace consumer.
85
86 - libkernel-consumer (internal)
87 Library for Kernel consumer control
88
89 - libust-consumer (internal)
90 Library for UST consumer control
91
92 - libhashtable (internal)
93 Library wrapper over URCU hashtables.
94
95 - lttng-consumerd
96 The consumer daemon which uses libconsumer.
97
98 - lttng-sessiond
99 The LTTng session daemon binary.
100
101 - lttng
102 The LTTng tracer command line control tool.
103
104 - include (lttng.h --> installed in $(includedir)/lttng/lttng.h)
105 The liblttngctl API header file.
106
107 - tests
108 Various test programs.
109
110 - doc
111 Various documentations and quickstart guide.
This page took 0.022935 seconds and 4 git commands to generate.