partkeepr

fork of partkeepr
git clone https://git.e1e0.net/partkeepr.git
Log | Files | Refs | Submodules | README | LICENSE

commit be7dc40e66e7ae92076e98799d32c56501d845b4
parent 02e0d74d0c18214e9bc3bae28fa7e657d6928f73
Author: Felicitus <felicitus@felicitus.org>
Date:   Thu, 16 Jun 2011 06:52:28 +0800

Added initial installation instructions for DEBIAN 6.0

Diffstat:
Adocumentation/installation/DEBIAN-6.0 | 54++++++++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 54 insertions(+), 0 deletions(-)

diff --git a/documentation/installation/DEBIAN-6.0 b/documentation/installation/DEBIAN-6.0 @@ -0,0 +1,54 @@ +The instructions are for Debian 6.0. + +IMPORTANT: I am not a Debian guru. As such, I wrote down all steps required to get a fully working partkeepr +installation. - Felicitus + +# Install required Packages + +apt-get install apache2 php5 php-pear mysql-server php5-imagick php-apc + +# Set PEAR to auto-discover channels + +pear config-set auto_discover 1 + +# Self-update PEAR and all updates + +pear upgrade-all + +# Install Doctrine ORM + +pear install pear.doctrine-project.org/DoctrineORM + +# Install the database + +apt-get install postgresql +apt-get install mysql + +# Install the PHP5 modules for your database + +apt-get install php5-pgsql +apt-get install php5-mysql + +# Optional: Install phing and related tools + +apt-get install php5-curl php5-xsl + +pear install pear.phing.info/phing + +pear channel-discover pear.pdepend.org +pear install --alldeps pear.phpmd.org/PHP_PMD + +pear install pear.phpunit.de/phpcpd + +pear install pear.phpunit.de/phpunit +pear install PhpDocumentor + +If you are on 64 bit arch, you need the ia32-libs for jsdb + +apt-get install ia32-libs + +# Install the JDK, needed for jsdb +apt-get install default-jdk + + +