python-application: add `logging.basicConfig()` to example
[lttng-docs.git] / contents / installing-lttng / desktop-distributions / fedora.md
CommitLineData
5e0cbfb0
PP
1---
2id: fedora
3---
4
5Starting from Fedora 17, LTTng-tools and LTTng-UST packages are officially
6available using `yum`:
7
8<pre class="term">
381786a1
PP
9sudo yum install lttng-tools
10sudo yum install lttng-ust
6441c86d 11sudo yum install lttng-ust-devel
5e0cbfb0
PP
12</pre>
13
a04900a7
SS
14LTTng-modules still needs to be built and installed from source. For that,
15make sure that the `kernel-devel` package is already installed beforehand:
16
17<pre class="term">
18sudo yum install kernel-devel
19</pre>
20
21Proceed on to fetch [LTTng-modules' source](#doc-building-from-source).
22Build and install it as follows:
23
24<pre class="term">
25KERNELDIR=/usr/src/kernels/$(uname -r) make
26sudo make modules_install
27</pre>
This page took 0.025957 seconds and 4 git commands to generate.