update build
[lttv.git] / ltt / branches / poly / QUICKSTART
CommitLineData
d9cd3a2e 1
2QUICKSTART
3
4How to use LTTng and LTTV in a few lines :
5
6c913994 6This document is made of four parts : The first one explains how to install
7LTTng and LTTV from Debian and RPM binary packages, the second one explains how
8to install LTTng and LTTV from sources and the third one describes the steps
9to follow to trace a system and view it. The fourth and last part explains
10briefly how to add a new trace point to the kernel.
11
12What you will typically want is to read sections 1 and 3 : install LTTng from
13binary packages and use it. If there are no packages ready for your system, you
14will have to install from sources (section 2) instead.
15
9c78dc8f 16These operations are made for installing the LTTng 0.5.18 tracer on a
80f4d0e1 17linux 2.6.15 kernel. You will also find instructions for installation of
d21695ed 18LTTV 0.8.x : the Linux Trace Toolkit Viewer.
38e8e662 19
20The following lttng patch is necessary to have the tracing hooks in the kernel.
21The following ltt-control module controls the tracing.
22
23Required programs and librairies are assumed to be automatically installed in an
24installation with Debian or RPM packages. In the case of an installation from
25sources, the dependencies are listed.
26
d9cd3a2e 27
c96be0d0 28** Current development status **
29
30LTTng :
31supported architectures :
32Intel Pentium (UP/SMP) with TSC
33
34LTTV :
35supported architectures :
36Intel i386 and better
d21695ed 37Intel 64 bits
c96be0d0 38PowerPC
39
40
41
af88bd8a 42Author : Mathieu Desnoyers, September 2005
d5118964 43Last update : February 10, 2006
d9cd3a2e 44
6c913994 45
46***********************************************************
47** Section 1 * Installation from Debian or RPM packages **
48***********************************************************
49
d21695ed 50** NOTE : RPM and debian packages are only made once a version has been
51 thoroughly tested. If they do not exist at the moment, please install from
d5118964 52 sources (see section 2 below). To see the list of compatibilities between
53 LTTng, LTTv, genevent and lttng-modules, please refer to
54 http://ltt.polymtl.ca > LTTng+LTTV versions compatibility
d21695ed 55
56
c1298250 57* Install from RPM packages on Fedora Core 4 :
58
59Get LTTV RPM from :
60
61http://ltt.polymtl.ca/packages/fedora/RPMS
62
8c7a7394 63LTTV RPM are ready.
64
65LTTng kernel and lttng-modules RPM are available for some architectures (i586,
66i686). Feel free to help fix the spec files to have correct lttng-modules RPM
67package.
c1298250 68
69
70* Install from Deb packages on Debian :
6a2c1aed 71
72You can use the ltt.polymtl.ca apt source to get LTTV for Debian :
73
74Add the following two sources to your /etc/apt/sources.list :
75
76deb http://ltt.polymtl.ca/packages/debian experimental main
77deb-src http://ltt.polymtl.ca/packages/debian experimental main
78
5694ce4d 79
80* Install from precompiled binary packages (LTTV compiled only for i386, and
81 LTTng only for i686 smp), perform the following :
6a2c1aed 82
83su -
84apt-get update
85apt-get install lttv lttv-doc
8c7a7394 86apt-get install kernel-image-2.6.12-rc4-mm2-lttng-0.4.2
87apt-get install lttng-modules-modules-2.6.12-rc4-mm2-lttng-0.4.2
6a2c1aed 88 * note : the packages are signed by myself. I am not considered a trusted
89 Debian source yet, so warnings are normal.
90
5694ce4d 91Then, follow the section "Editing the system wide configuration" in section 2.
92
93* Create custom LTTV Debian packages
94
95Binary packages are only available for i386. If you want to create your own LTTV
96packages for other platforms, do :
6a2c1aed 97
5694ce4d 98su -
99cd /usr/src
78d521e3 100apt-get source lttv
8c7a7394 101cd lttv-0.6.9
78d521e3 102dpkg-buildpackage -rfakeroot
103
5694ce4d 104You should then have your LTTV .deb files created for your architecture.
105
106* Create custom LTTng packages
107
108For building LTTng Debian packages :
109
110su -
8c7a7394 111apt-get install kernel-source-2.6.12-rc4-mm2-lttng-0.4.2
5694ce4d 112cd /usr/src
8c7a7394 113bzip2 -cd kernel-source-2.6.12-rc4-mm2-lttng-0.4.2.tar.bz2 | tar xvof -
114cd kernel-source-2.6.12-rc4-mm2-lttng-0.4.2
5694ce4d 115make menuconfig (or xconfig or config) (customize your configuration)
116make-kpkg kernel_image
117
118You will then see your freshly created .deb in /usr/src. Install it with
119dpkg -i /usr/src/(image-name).deb
120
121You will also need to create a package for the lttng-modules :
122
123su -
124cd /usr/src
125apt-get source lttng-modules
8c7a7394 126cd kernel-source-2.6.12-rc4-mm2-lttng-0.4.2
5694ce4d 127make-kpkg --added_modules /usr/src/lttng-modules-0.3 modules_image
128
129You will then see your freshly created .deb in /usr/src. Install it with
130dpkg -i /usr/src/lttng-modules-modules-(your version).deb
131
6c913994 132
5694ce4d 133Then, follow the section "Editing the system wide configuration" in section 2.
6c913994 134
135
136***********************************************************
137** Section 2 * Installation from sources **
138***********************************************************
139
38e8e662 140* Prerequisites
141
142Tools needed to follow the package download steps :
143
144o wget
145o bzip2
146o gzip
147o tar
148
149You have to install the standard development librairies and programs necessary
150to compile a kernel :
151
152(from Documentation/Changes in the Linux kernel tree)
153o Gnu C 2.95.3 # gcc --version
154o Gnu make 3.79.1 # make --version
155o binutils 2.12 # ld -v
156o util-linux 2.10o # fdformat --version
157o module-init-tools 0.9.10 # depmod -V
158
159You might also want to have libncurses5 to have the text mode kernel
160configuration menu, but there are alternatives.
161
162Prerequisites for LTTV 0.6.x installation are :
163
860c0a03 164gcc 3.2 or better
165gtk 2.4 or better development libraries
166 (Debian : libgtk2.0, libgtk2.0-dev)
167 (Fedora : gtk2, gtk2-devel)
168 note : For Fedora users : this might require at least core 3 from Fedora,
169 or you might have to compile your own GTK2 library.
170glib 2.4 or better development libraries
171 (Debian : libglib2.0-0, libglib2.0-dev)
172 (Fedora : glib2, glib2-devel)
173libpopt development libraries
174 (Debian : libpopt0, libpopt-dev)
175 (Fedora : popt)
176libpango development libraries
177 (Debian : libpango1.0, libpango1.0-dev)
178 (Fedora : pango, pango-devel)
179libc6 development librairies
180 (Debian : libc6, libc6-dev)
181 (Fedora : glibc, glibc)
38e8e662 182
183
d9cd3a2e 184* Getting the LTTng packages
185
186su -
187mkdir /usr/src/lttng
188cd /usr/src/lttng
189(see http://ltt.polymtl.ca/lttng for package listing)
9c78dc8f 190wget http://ltt.polymtl.ca/lttng/lttng-modules-0.5.tar.bz2
191wget http://ltt.polymtl.ca/lttng/patch-2.6.15-lttng-0.5.18.tar.bz2
192bzip2 -cd lttng-modules-0.5.tar.bz2 | tar xvof -
193bzip2 -cd patch-2.6.15-lttng-0.5.18.tar.bz2 | tar xvof -
d9cd3a2e 194
195
196* Getting LTTng kernel sources
197
198su -
199cd /usr/src
80f4d0e1 200wget http://kernel.org/pub/linux/kernel/v2.6/testing/linux-2.6.15.tar.bz2
201bzip2 -cd linux-2.6.15.tar.bz2 | tar xvof -
202cd linux-2.6.15
9c78dc8f 203cat /usr/src/lttng/patch-2.6.15-lttng-0.5.18* | patch -p1
d9cd3a2e 204cd ..
9c78dc8f 205mv linux-2.6.15 linux-2.6.15-lttng-0.5.18
d9cd3a2e 206
207
208* Installing a LTTng kernel
209
210su -
9c78dc8f 211cd /usr/src/linux-2.6.15-lttng-0.5.18
38e8e662 212make menuconfig (or make xconfig or make config)
213 Select the < Help > button if you are not familiar with kernel
214 configuration.
215 Items preceded by [*] means they has to be built into the kernel.
216 Items preceded by [M] means they has to be built as modules.
217 Items preceded by [ ] means they should be removed.
d21695ed 218 go to the "Instrumentation Support" section
38e8e662 219 Select the following options :
220 [*] Linux Trace Toolkit Instrumentation Support
d21695ed 221 <M> or <*> Linux Trace Toolkit Tracer
8ede3ed9 222 It makes no difference for the rest of the procedure whether the Tracer
223 is compiled built-in or as a module.
d21695ed 224 activate :
225 [*] Align Linux Trace Toolkit Traces
d9cd3a2e 226 do NOT activate (not ready yet) :
38e8e662 227 [ ] Activate Linux Trace Toolkit Heartbeat Timer
d21695ed 228 You may or may not activate instrumentation per facility. They are all
229 selected for logging by default. It can be used as a compile time filter to
230 enable/disable logging of events. It is useful to discard events with a
231 minimal impact on the system and especially useful for now, as the dynamic
232 filter has not been implemented yet.
38e8e662 233 Select <Exit>
234 Select <Exit>
235 Select <Yes>
02bc6879 236make
26d45a39 237make modules_install
8ede3ed9 238make install
916ec268 239
d9cd3a2e 240reboot
241
9c78dc8f 242 Select the Linux 2.6.15-lttng-0.5.18 kernel in your boot loader.
38e8e662 243
d9cd3a2e 244
245* Install the ltt-modules
246
247su -
9c78dc8f 248cd /usr/src/lttng/lttng-modules-0.5
249KERNELDIR=/usr/src/linux-2.6.15-lttng-0.5.18 make
250KERNELDIR=/usr/src/linux-2.6.15-lttng-0.5.18 make modules_install
d9cd3a2e 251
5694ce4d 252
253* Editing the system wide configuration
254
255You must activate relayfs and specify a mount point. This is typically done in
256fstab such that it happens at boot time.
257
258If you have never used RelayFS before, these operation would do this for you :
259
260mkdir /mnt/relayfs
261cp /etc/fstab /etc/fstab.lttng.bkp
262echo "relayfs /mnt/relayfs relayfs rw 0 0" >> /etc/fstab
263
264then, rebooting or issuing the following command will activate relayfs :
265
266mount /mnt/relayfs
267
38e8e662 268You need to load the ltt-control module to be able to control tracing from user
269space. This is done by issuing the command :
8ede3ed9 270
d9cd3a2e 271modprobe ltt-control
272
9c78dc8f 273If you want to have complete information about the kernel state (including all
274the process names), you need to load the ltt-statedump module. This is done by
275issuing the command :
276
277modprobe ltt-statedump
278
38e8e662 279You can automate at boot time loading the ltt-control module by :
8ede3ed9 280
d9cd3a2e 281echo ltt-control >> /etc/modules
9c78dc8f 282echo ltt-statedump >> /etc/modules
d9cd3a2e 283
284
285* Getting and installing the LTTV package
286
287su -
288cd /usr/src
9c78dc8f 289wget http://ltt.polymtl.ca/packages/LinuxTraceToolkitViewer-0.8.13-07022006.tar.gz
290gzip -cd LinuxTraceToolkitViewer-0.8.13-07022006.tar.gz | tar xvof -
291cd LinuxTraceToolkitViewer-0.8.13-07022006
36fcd0b7 292(refer to README to see the development libraries that must be installed on you
293system)
d9cd3a2e 294./configure
295make
296make install
297
6c913994 298
299
300
301***********************************************************
d1f19ac5 302** Section 3 * Using LTTng and LTTV **
6c913994 303***********************************************************
304
d1f19ac5 305* Use graphical LTTV to control tracing and analyse traces
d9cd3a2e 306
307lttv-gui (or /usr/local/bin/lttv-gui)
e44b6048 308 - Spot the "Tracing Control" icon : click on it
309 (it's a traffic light icon)
d9cd3a2e 310 - enter the root password
311 - click "start"
312 - click "stop"
313 - Yes
314 * You should now see a trace
315
d1f19ac5 316* Use text mode LTTng to control tracing
317
5e5b1de1 318The tracing can be controlled from a terminal by using the lttctl command (as
319root).
d1f19ac5 320
321Start tracing :
322
29f07f68 323lttctl -n trace -d -l /mnt/relayfs/ltt -t /tmp/trace
d1f19ac5 324
325Stop tracing and destroy trace channels :
326
327lttctl -n trace -R
328
329see lttctl --help for details.
330
331
6c913994 332* Use text mode LTTV
333
334Fell free to look in /usr/local/lib/lttv/plugins to see all the text and
335graphical plugins available.
336
337For example, a simple trace dump in text format is available with :
338
339lttv -m textDump -t /tmp/trace
340
341see lttv -m textDump --help for detailed command line options of textDump.
342
343
344
345
346***********************************************************
347** Section 4 * Adding new instrumentations with genevent **
348***********************************************************
d9cd3a2e 349
350* Getting and installing genevent
351
cb598ad7 352su -
d9cd3a2e 353cd /usr/src
ff15f6a6 354wget http://ltt.polymtl.ca/packages/genevent-0.6.tar.gz
9c78dc8f 355gzip -cd genevent-0.8.tar.gz | tar xvof -
356cd genevent-0.8
d9cd3a2e 357make
358make install
359
360
361* Add new events to the kernel with genevent
362
363su -
364cd /usr/local/share/LinuxTraceToolkitViewer/facilities
365cp process.xml yourfacility.xml
366 * edit yourfacility.xml to fit your needs.
367cd /tmp
81685107 368/usr/local/bin/genevent /usr/local/share/LinuxTraceToolkitViewer/facilities/yourfacility.xml
d9cd3a2e 369cp ltt-facility-yourfacility.h ltt-facility-id-yourfacility.h \
9c78dc8f 370 /usr/src/linux-2.6.15-lttng-0.5.18/include/linux/ltt
d9cd3a2e 371cp ltt-facility-loader-yourfacility.c ltt-facility-loader-yourfacility.h \
9c78dc8f 372 /usr/src/linux-2.6.15-lttng-0.5.18/ltt
d9cd3a2e 373 * edit the kernel file you want to instrument
374 - Add #include <linux/ltt/ltt-facility-yourfacility.h> at the beginning
375 of the file.
376 - Add a call to the tracing functions. See their names and parameters in
9c78dc8f 377 /usr/src/linux-2.6.15-lttng-0.5.18/include/linux/ltt/ltt-facility-yourfacility.h
d9cd3a2e 378
379
380
This page took 0.043093 seconds and 4 git commands to generate.