Support #617
Updated by Daniel Curtis over 9 years ago
This is a guide for installing Kolab groupware on Debian 7. *NOTE* 5/8/15: I initially tried to install Kolab on Debian 8; however due to unsolvable dependency issues, I was unable to get a working Kolab installation working for Debian 8. h2. Prepare the Environment * make sure the system is up to date: <pre> apt-get update && apt-get upgrade -y </pre> h2. Install Kolab * Add the Kolab apt repository information: <pre> echo 'deb http://obs.kolabsys.com/repositories/Kolab:/3.4/Debian_7.0/ http://obs.kolabsys.com/repositories/Kolab:/3.4/Debian_8.0/ ./' >> /etc/apt/sources.list.d/kolab.list echo 'deb http://obs.kolabsys.com/repositories/Kolab:/3.4:/Updates/Debian_7.0/ http://obs.kolabsys.com/repositories/Kolab:/3.4:/Updates/Debian_8.0/ ./' >> /etc/apt/sources.list.d/kolab.list </pre> * Import the GPG key used to sign the packages: <pre> gpg --search devel@lists.kolab.org 1 </pre> *NOTE*: Verify that the key has the correct fingerprint @_79D86A05FDE6C9FB4E43A6C5830C2BCF446D5A45_@ * Import the GPG key into apt: <pre> gpg --export --armor devel@lists.kolab.org | apt-key add - </pre> * Ensure the Kolab packages have priority over the Debian packages: <pre> nano /etc/apt/preferences.d/kolab </pre> #* And add the following <pre> Package: * Pin: origin obs.kolabsys.com Pin-Priority: 501 </pre> * Update the repository metadata: <pre> apt-get update </pre> * Install the base package as follows: <pre> aptitude install kolab </pre> h2. Resources * https://docs.kolab.org/installation-guide/debian.html