Differences between revisions 2 and 4 (spanning 2 versions)
Revision 2 as of 2013-01-03 17:39:47
Size: 1118
Editor: ?MathieuParent
Comment:
Revision 4 as of 2013-01-03 17:47:33
Size: 1555
Editor: ?MathieuParent
Comment:
Deletions are marked like this. Additions are marked like this.
Line 10: Line 10:
This can be done with:
{{{
cat <<EOF > /etc/apt/sources.list.d/unstable.list
deb http://ftp.fr.debian.org/debian unstable main
EOF
cat <<EOF > /etc/apt/preferences.d/horde.pref
Package: *
Pin: release a=unstable
Pin-Priority: 100

Package: php-horde php-horde-*
Pin: release a=unstable
Pin-Priority: 500
EOF
apt-get update
}}}

... and following the instructions for sid.
Line 14: Line 33:
 aptitude install php-horde-webmail {{{
aptitude install php-horde-webmail
}}}
Line 17: Line 38:
 webmail-install {{{
webmail-install
}}}
Line 20: Line 43:
 aptitude install php-horde-groupware {{{
aptitude install php-horde-groupware
}}}
Line 23: Line 48:
 groupware-install {{{
groupware-install
}}}
Line 29: Line 56:
 aptitude install php-horde-gollem {{{
aptitude install php-horde-gollem
}}}

General Horde installation Howto

Debian <= 6 (squeeze)

For Debian squeeze and above, Horde 3 instructions are at Horde/Horde3.

Debian 7 (wheezy)

Horde is not in Debian Wheezy, but you can install it from unstable.

This can be done with:

cat <<EOF > /etc/apt/sources.list.d/unstable.list
deb http://ftp.fr.debian.org/debian unstable main
EOF
cat <<EOF > /etc/apt/preferences.d/horde.pref
Package: *
Pin: release a=unstable
Pin-Priority: 100

Package: php-horde php-horde-*
Pin: release a=unstable
Pin-Priority: 500
EOF
apt-get update

... and following the instructions for sid.

Debian unstable (sid)

Installing bundles

For example, if you want to install the webmail bundle:

aptitude install php-horde-webmail

Then :

webmail-install

For example, if you want to install the groupware bundle:

aptitude install php-horde-groupware

Then :

groupware-install

NB: Horde bundles provides the horde-bundle virtual package

Installing individual applications

Just add php-horde- in front of the application name. Example

aptitude install php-horde-gollem

Configuring Webserver

/!\ The php-horde package installs a simple apache config (/etc/apache2/conf.d/horde.conf). This is for fast installation but is not sufficient for production environment (it does not ensure SSL). You can remove it and add a new site (/etc/apache2/sites-available/horde.conf) and enable it (a2ensite horde).