Replace leading dot by underscore for session name
[lttng-trace.git] / README.md
CommitLineData
27caca78
MD
1LTTng trace - Trace command execution and its sub-processes
2=====================================================================
3
4by Mathieu Desnoyers
5
93f41cd5
MD
6
7Building
8--------
9
10### Prerequisites
11
12This source tree is based on the Autotools suite from GNU to simplify
13portability. Here are some things you should have on your system in order to
14compile the Git repository tree:
15
16 - [GNU Autotools](http://www.gnu.org/software/autoconf/)
a6235500
MJ
17 (**Automake >= 1.12**, **Autoconf >= 2.69**,
18 **Autoheader >= 2.69**;
93f41cd5
MD
19 make sure your system-wide `automake` points to a recent version!)
20
21### Building steps
22
23If you get the tree from the Git repository, you will need to run
24
25 ./bootstrap
26
27in its root. It calls all the GNU tools needed to prepare the tree
28configuration.
29
30To build and install, do:
31
32 ./configure
33 make
34 sudo make install
35
36### Usage
37
38Make sure lttng-tools, lttng-ust, and lttng-modules are installed on
39your system. Make sure your user is part of the `tracing` group.
40
41As root, launch the LTTng session daemon:
42
43 lttng-sessiond -d
44
45As user, run:
46
47 lttng-trace COMMAND
48
49Where COMMAND is the command you want to trace. Follow the instructions
50on standard error.
51
52For detailed help, run:
53
54 lttng-trace --help
This page took 0.023626 seconds and 4 git commands to generate.