]> git.meshlink.io Git - catta/blob - INSTALL
f47c8482f29e381842ac732f70239bd8de0ff9a8
[catta] / INSTALL
1 *** Quick install instructions (tested on debian/ubuntu only!) ***
2
3 $ ./bootstrap.sh
4         (this will run autoconf/automake)
5
6 $ ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var
7 $ make
8 # make install
9
10 # addgroup --system avahi
11 # adduser --system --no-create-home --ingroup avahi avahi
12         (These commands are Debian specific and may be different on other
13         distributions)
14
15 # /etc/init.d/dbus-1 restart
16         (This whill restart DBUS and avahi too)
17
18 While "make" and "boostrap.sh" may be run as normal users all other commands
19 need to be run is root.
20
21 *** Note ***
22
23 - On other linux distributions, the dbus initscript may be different (eg redhat
24 /etc/init.d/messagebus).  You need to restart dbus to make it know about
25 /etc/dbus-1/system.d/avahi-dbus.conf .
26
27 - To automatically start avahi-dnsconfd on Debian base distro:
28 # update-rc.d avahi-dnsconfd defaults 25 15
29
30 $Id$