Merge pull request #18 from RandolfCarter/master

Corrects Ubuntu/Debian and Manual installation instructions
This commit is contained in:
Daniel Molkentin
2013-01-06 03:02:43 -08:00
2 changed files with 24 additions and 10 deletions

View File

@@ -115,7 +115,14 @@ PCLinuxOS
Follow the Tutorial `ownCloud, installation and setup`_ on the PCLinuxOS web site.
Ubuntu / Debian
~~~~~~~~~~~~~~~
Go to the `linux package sources`_ page and execute the steps as described there
for your distribution.
.. _stable version: http://aur.archlinux.org/packages.php?ID=47585
.. _development version: http://aur.archlinux.org/packages.php?ID=38767
.. _ownCloud repository: http://software.opensuse.org/search?q=owncloud&baseproject=ALL&lang=de
.. _ownCloud, installation and setup: http://pclinuxoshelp.com/index.php/Owncloud,_installation_and_setup
.. _linux package sources: http://software.opensuse.org/download.html?project=isv:ownCloud:community&package=owncloud

View File

@@ -10,33 +10,40 @@ Prerequisites
To run ownCloud, your webserver must have the following installed:
* php5 (>= 5.3)
* php5-json
* php-xml
* php-mbstring
* php5-zip
* php5-gd
* php-xml-parser
* php5-intl
And as *optional* dependencies:
* php5-sqlite (>= 3)
* php5-mysql
* smbclient
* curl
* libcurl3
* libcurl3-dev
* php5-curl
* php5-intl
* php-pdo
Commands for Ubuntu and Debian:
You have to install at least one of php5-sqlite or php5-mysql, depending
on which of the two database systems you want to use.
smbclient is only used if you want to mount SMB shares to your owncloud.
The curl packages are needed for some apps (e.g. http user authentication)
Commands for Ubuntu and Debian (run as root):
::
apt-get install apache2 php5 php5-json php-xml php-mbstring php5-zip php5-gd
apt-get install php5-sqlite curl libcurl3 libcurl3-dev php5-curl php-pdo
apt-get install apache2 php5 php5-gd php-xml-parser php5-intl
apt-get install php5-sqlite php5-mysql smbclient curl libcurl3 php5-curl
.. todo:: Document other distributions.
You dont need any WebDAV support of your webserver (i.e. apaches mod_webdav)
to access your ownCloud data via WebDAV, ownCloud has a WebDAV server built in.
In fact, you should make sure that any built-in WebDAV module of your webserver
is disabled (at least for the owncloud directory), as it can interfere with
owncloud's built-in WebDAV support.
Extract ownCloud and Copy to Your Webserver
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~