makefile version
[lttv.git] / ltt / branches / poly / QUICKSTART
CommitLineData
d9cd3a2e 1
2QUICKSTART
3
4How to use LTTng and LTTV in a few lines :
5
6These operations are made for installing LTTng 0.2 on a linux 2.6.12-rc2-mm2
7kernel. Change the versions to fit your needs.
8
af88bd8a 9Author : Mathieu Desnoyers, September 2005
10
d9cd3a2e 11
12* Getting the LTTng packages
13
14su -
15mkdir /usr/src/lttng
16cd /usr/src/lttng
17(see http://ltt.polymtl.ca/lttng for package listing)
18wget http://ltt.polymtl.ca/lttng/lttng-modules-0.2.tar.bz2
4408c54c 19wget http://ltt.polymtl.ca/lttng/patch-2.6.12-rc4-mm2-lttng-0.3.bz2
d9cd3a2e 20bzip2 -cd lttng-modules-0.2.tar.bz2 | tar xvof -
21
22
23* Getting LTTng kernel sources
24
25su -
26cd /usr/src
27wget http://kernel.org/pub/linux/kernel/v2.6/testing/linux-2.6.12-rc4.tar.bz2
28wget http://kernel.org/pub/linux/kernel/people/akpm/patches/2.6/2.6.12-rc4/2.6.12-rc4-mm2/2.6.12-rc4-mm2.bz2
29bzip2 -cd linux-2.6.12-rc4.tar.bz2 | tar xvof -
30cd linux-2.6.12-rc4
31bzip2 -cd ../2.6.12-rc4-mm2.bz2 | patch -p1
4408c54c 32bzip2 -cd /usr/src/lttng/patch-2.6.12-rc4-mm2-lttng-0.3.bz2 | patch -p1
d9cd3a2e 33cd ..
4408c54c 34mv linux-2.6.12-rc4 linux-2.6.12-rc4-mm2-lttng-0.3
d9cd3a2e 35
36
37* Installing a LTTng kernel
38
39su -
4408c54c 40cd /usr/src/linux-2.6.12-rc4-mm2-lttng-0.3
d9cd3a2e 41make menuconfig
42 General setup
43 * Linux Trace Toolkit Instrumentation Support
44 M or * Linux Trace Toolkit Tracer
45 do NOT activate (not ready yet) :
46 Align Linux Trace Toolkit Traces
47 Activate Linux Trace Toolkit Heartbeat Timer
7bfce92a 48 IMPORTANT : This is enabled by default : you must disable it!
02bc6879 49make
d9cd3a2e 50make install
26d45a39 51make modules_install
d9cd3a2e 52reboot
53
54
55* Install the ltt-modules
56
57su -
58cd /usr/src/lttng/lttng-modules-0.2
4408c54c 59KERNELDIR=/usr/src/linux-2.6.12-rc4-mm2-lttng-0.3 make
60KERNELDIR=/usr/src/linux-2.6.12-rc4-mm2-lttng-0.3 make modules_install
d9cd3a2e 61
62note : at this stage, you might want to execute
63modprobe ltt-control
64
65and you might also want to do this :
66echo ltt-control >> /etc/modules
67
68
69* Getting and installing the LTTV package
70
71su -
72cd /usr/src
73wget http://ltt.polymtl.ca/packages/LinuxTraceToolkitViewer-0.5-16092005.tar.gz
74gzip -cd LinuxTraceToolkitViewer-0.5-16092005.tar.gz | tar xvof -
75cd LinuxTraceToolkitViewer-0.5-16092005
76./configure
77make
78make install
79
80* Use LTTV
81
82lttv-gui (or /usr/local/bin/lttv-gui)
83 - Spot the "Trace Control" icon : click on it
84 - enter the root password
85 - click "start"
86 - click "stop"
87 - Yes
88 * You should now see a trace
89
90
91* Getting and installing genevent
92
cb598ad7 93su -
d9cd3a2e 94cd /usr/src
95wget http://ltt.polymtl.ca/packages/genevent-0.1.tar.gz
96gzip -cd genevent-0.1.tar.gz | tar xvof -
97cd genevent-0.1
98make
99make install
100
101
102* Add new events to the kernel with genevent
103
104su -
105cd /usr/local/share/LinuxTraceToolkitViewer/facilities
106cp process.xml yourfacility.xml
107 * edit yourfacility.xml to fit your needs.
108cd /tmp
109/usr/local/bin/genevent /usr/local/share/LinuxTraceToolkitViewer/yourfacility.xml
110cp ltt-facility-yourfacility.h ltt-facility-id-yourfacility.h \
4408c54c 111 /usr/src/linux-2.6.12-rc4-mm2-lttng-0.3/include/linux/ltt
d9cd3a2e 112cp ltt-facility-loader-yourfacility.c ltt-facility-loader-yourfacility.h \
4408c54c 113 /usr/src/linux-2.6.12-rc4-mm2-lttng-0.3/ltt
d9cd3a2e 114 * edit the kernel file you want to instrument
115 - Add #include <linux/ltt/ltt-facility-yourfacility.h> at the beginning
116 of the file.
117 - Add a call to the tracing functions. See their names and parameters in
4408c54c 118 /usr/src/linux-2.6.12-rc4-mm2-lttng-0.3/include/linux/ltt/ltt-facility-yourfacility.h
d9cd3a2e 119
120
121
This page took 0.02738 seconds and 4 git commands to generate.