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