44e49793891749ac0d1a75de5d0b2b8dc78d630a
[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 </pre>
12
13 LTTng-modules still needs to be built and installed from source. For that,
14 make sure that the `kernel-devel` package is already installed beforehand:
15
16 <pre class="term">
17 sudo yum install kernel-devel
18 </pre>
19
20 Proceed on to fetch [LTTng-modules' source](#doc-building-from-source).
21 Build and install it as follows:
22
23 <pre class="term">
24 KERNELDIR=/usr/src/kernels/$(uname -r) make
25 sudo make modules_install
26 </pre>
This page took 0.066548 seconds and 3 git commands to generate.