Make sure install instructions target LTTng 2.7
[lttng-docs.git] / contents / installing-lttng / building-from-source.md
index 06384242eb3cda8f8a55fe331050162dde09327c..b5d3c9eb5bd609ba10668c69293067c160860d42 100644 (file)
@@ -22,46 +22,3 @@ are rendered as rich text when
 <a href="https://github.com/lttng" class="ext">viewed on GitHub</a>.
 </p>
 </div>
-
-If you're using Ubuntu, executing the following Bash script
-installs the appropriate dependencies, clones the LTTng
-Git repositories, builds the projects, and installs them. The sources
-are cloned into `~/src`. Your user needs to be a sudoer for the install
-steps to be completed.
-
-~~~ text
-#!/bin/bash
-
-mkdir ~/src
-cd ~/src
-sudo apt-get update
-sudo apt-get -y install build-essential libtool flex bison \
-                        libpopt-dev uuid-dev libglib2.0-dev autoconf \
-                        git libxml2-dev
-git clone git://git.lttng.org/lttng-ust.git
-git clone git://git.lttng.org/lttng-modules.git
-git clone git://git.lttng.org/lttng-tools.git
-git clone git://git.lttng.org/userspace-rcu.git
-git clone http://git.linuxfoundation.org/diamon/babeltrace.git
-
-cd userspace-rcu
-./bootstrap && ./configure && make -j 4 && sudo make install
-sudo ldconfig
-
-cd ../lttng-ust
-./bootstrap && ./configure && make -j 4 && sudo make install
-sudo ldconfig
-
-cd ../lttng-modules
-make && sudo make modules_install
-sudo depmod -a
-
-cd ../lttng-tools
-./bootstrap && ./configure && make -j 4 && sudo make install
-sudo ldconfig
-sudo cp extras/lttng-bash_completion /etc/bash_completion.d/lttng
-
-cd ../babeltrace
-./bootstrap && ./configure && make -j 4 && sudo make install
-sudo ldconfig
-~~~
This page took 0.023429 seconds and 4 git commands to generate.