aboutsummaryrefslogtreecommitdiff
path: root/doc/user.xml
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2009-03-12 17:12:53 +0100
committerMax Kellermann <max@duempel.org>2009-03-12 17:12:53 +0100
commit869f440f87341feccc569a38b164965a3041a428 (patch)
tree531579055cc97cf3beac1203c87162ba7f694788 /doc/user.xml
parent0cb8e7f2cbe8538e4f7961cf3eb995b05c439c8c (diff)
doc: added installation manual to the User's Manual
Very small start..
Diffstat (limited to 'doc/user.xml')
-rw-r--r--doc/user.xml47
1 files changed, 47 insertions, 0 deletions
diff --git a/doc/user.xml b/doc/user.xml
index f9a5ba12..7e43dce8 100644
--- a/doc/user.xml
+++ b/doc/user.xml
@@ -14,11 +14,58 @@
<chapter>
<title>Installation</title>
+ <para>
+ We recommend that you use the software installation routines of
+ your distribution to install MPD. Most operating systems have a
+ MPD package, which is very easy to install.
+ </para>
+
+ <section>
+ <title>Installing on Debian/Ubuntu</title>
+
+ <para>
+ Install the package <filename>mpd</filename>:
+ </para>
+
+ <programlisting>apt-get install mpd</programlisting>
+ </section>
+
<section>
<title>Compiling from source</title>
<para>
+ Download the source tarball from <ulink
+ url="http://mpd.wikia.com/wiki/Server">the MPD home
+ page</ulink> and unpack it:
+ </para>
+
+ <programlisting>tar xjf mpd-0.14.2.tar.bz
+cd mpd-0.14.2</programlisting>
+
+ <para>
+ Make sure that all the required libraries and build tools are
+ installed. The <filename>INSTALL</filename> file has a list.
+ </para>
+
+ <para>
+ Now configure the source tree:
</para>
+
+ <programlisting>./configure</programlisting>
+
+ <para>
+ The <parameter>--help</parameter> argument shows a list of
+ compile-time options. When everything is ready and
+ configured, compile:
+ </para>
+
+ <programlisting>make</programlisting>
+
+ <para>
+ And install:
+ </para>
+
+ <programlisting>make install</programlisting>
</section>
</chapter>