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