summaryrefslogtreecommitdiff
path: root/README.postgresql
diff options
context:
space:
mode:
authorLarsAC <LarsAC@e10066b5-e1e2-0310-b819-94efdf66514b>2005-07-29 23:00:53 +0000
committerLarsAC <LarsAC@e10066b5-e1e2-0310-b819-94efdf66514b>2005-07-29 23:00:53 +0000
commit335def9f61ce75a3857bd21745c629005c37db79 (patch)
treedaae8b1105c422542181a4bf5568f684b6e955b9 /README.postgresql
parentda2367d81a6a117554b31080a6e722b51150b8f8 (diff)
downloadvdr-plugin-muggle-335def9f61ce75a3857bd21745c629005c37db79.tar.gz
vdr-plugin-muggle-335def9f61ce75a3857bd21745c629005c37db79.tar.bz2
Merged from 0.1.7-wr
git-svn-id: https://vdr-muggle.svn.sourceforge.net/svnroot/vdr-muggle/trunk/muggle-plugin@791 e10066b5-e1e2-0310-b819-94efdf66514b
Diffstat (limited to 'README.postgresql')
-rw-r--r--README.postgresql58
1 files changed, 58 insertions, 0 deletions
diff --git a/README.postgresql b/README.postgresql
new file mode 100644
index 0000000..8f4aa81
--- /dev/null
+++ b/README.postgresql
@@ -0,0 +1,58 @@
+/*! \mainpage Muggle: Usage with postgresql
+
+This is a plugin for the Video Disk Recorder (VDR).
+
+Written by: Andi Kellner,
+ Lars von Wedel <vonwedel@web.de>,
+ Ralf Klueber <r@lf-klueber.de>,
+ Wolfgang Rohdewald <wolfgang@rohdewald.de>
+
+Project's homepage: http://www.htpc-tech.de/htpc/muggle.htm
+
+Latest version available at: http://www.htpc-tech.de/htpc/muggle-dev.htm
+
+See the file COPYING for license information.
+
+\section prereq PREREQUISITES
+
+You will need:
+
+ - postgresql client libraries: Debian package postgresql-client
+ - postgresql server, possibly on another machine: Debian package postgresql
+ - postgresql-dev for the compilation
+
+Please execute these steps before starting muggle the first time:
+(tested on Debian unstable)
+
+1. log in as root
+2. su - postgres
+3. createuser vdr
+4. createdb GiantDisc
+
+
+Everything else will be done by muggle.
+
+\section install INSTALLING
+
+Adapt the Makefile or Make.config to your system. Define HAVE_PG
+
+HAVE_PG=1
+
+
+\section SET UP MUGGLE WITH POSTGRESQL
+
+Muggle and mugglei use a small set of parameters in order to control
+the interaction with the Postgresql server. Let's look at an example:
+
+\verbatim
+ -P'muggle -h /tmp -u vdr -t/home/music'
+\endverbatim
+
+The -h parameter says to look for a socket in /tmp (this is what I
+had to to on Debian unstable).
+
+Start mugglei without arguments to see a list and explanation of
+all available options. They can vary slightly depending on the
+chosen data base software.
+
+*/