Last updated January 24, 2013. Created by j0nathan on October 27, 2011.
Edited by gboudrias. Log in to edit this page.
There are at least three different ways to install the Koumbit Platforms (kplatforms) project:
- With the Debian package.
You would prefer this way for simplicity and stability. - From the git repository.
You would prefer this way to stay up to date, but you may encounter development issues once in a while. - With the tarball.
You would use this way if you cannot install the Debian package nor install from git.
Installing the package for Debian and Ubuntu
- To add the package repository to your system, add these two lines to the file "/etc/apt/sources.list":
deb http://debian.koumbit.net/debian stable main
deb-src http://debian.koumbit.net/debian stable main - Add the archive key to your keyring:
wget -q http://debian.koumbit.net/debian/key.asc -O- | sudo apt-key add - - Update the package list on your system:
sudo apt-get update - Install the package:
sudo apt-get install kplatforms
The Debian package is available shortly after a release on drupal.org.
Installing from the git repository
- You will usually need to be the aegir user:
sudo -i -u aegir - We suggest having a folder for the makefiles in /var/aegir:
mkdir /var/aegir/makefiles
cd /var/aegir/makefiles - Follow the essential Git commands for working with this project:
git clone http://git.drupal.org/project/kplatforms.git
For more information on git usage, see Getting started with Git on Drupal and the Drupal.org Git FAQ.
Installing the tarball
- You will usually need to be the aegir user:
sudo -i -u aegir - We suggest having a folder for the makefiles in /var/aegir:
mkdir /var/aegir/makefiles
cd /var/aegir/makefiles - Downloading the tarball:
wget http://ftp.drupal.org/files/projects/kplatforms-x.x-x.x.tar.gz
tar zxvf kplatforms-x.x-x.x.tar.gz
When you want to download a new version of the project, you have to remove the directory first ( rm -r kplatforms ) and download it again as seen previously.