OwnCloud
From Indie IT Wiki
Documentation
1. https://wiki.amahi.org/index.php/OwnCloud_User_and_Group_Administration
2. https://wiki.amahi.org/index.php/Owncloud_Sharing
Desktop Clients
http://owncloud.org/sync-clients/
Installation
Ubuntu
http://software.opensuse.org/download/package?project=isv:ownCloud:desktop&package=owncloud-client
Gentoo / Git
Create MySQL database, and set up permissions...
mysql -uroot -p
mysql> CREATE DATABASE owncloud; mysql> GRANT ALL PRIVILEGES ON owncloud.* TO "owncloud"@"localhost" IDENTIFIED BY "owncloud"; mysql> FLUSH PRIVILEGES; mysql> quit;
Download latest version via git...
cd /var/www/localhost/htdocs/ git clone git://github.com/owncloud/core.git owncloud cd owncloud git clone git://github.com/owncloud/3rdparty.git 3rdparty
Load up ownCloud start page in a browser...
http://mywebserver.ip/owncloud
Fill in the form, creating an admin user...
username: username password: password database: owncloud username: owncloud password: owncloud hostname: localhost
Keeping things up to date...
cd /var/www/localhost/htdocs/owncloud/3rdparty/ git pull remote: Counting objects: 1, done. remote: Total 1 (delta 0), reused 1 (delta 0) Unpacking objects: 100% (1/1), done. From git://github.com/owncloud/3rdparty * [new tag] v5.0.3 -> v5.0.3 Already up-to-date. cd /var/www/localhost/htdocs/owncloud git pull remote: Counting objects: 503, done. remote: Compressing objects: 100% (149/149), done. remote: Total 293 (delta 234), reused 202 (delta 144) Receiving objects: 100% (293/293), 46.97 KiB, done. Resolving deltas: 100% (234/234), completed with 87 local objects. From git://github.com/owncloud/core * [new branch] button-css-fixes -> origin/button-css-fixes * [new branch] cleanup-setup -> origin/cleanup-setup * [new branch] fix_2650 -> origin/fix_2650 * [new branch] improve_gitignore -> origin/improve_gitignore 48afa39..c745bfa master -> origin/master 8231f65..5add001 stable5 -> origin/stable5 73dd54c..d048ff7 vcategories_purge_multi -> origin/vcategories_purge_multi From git://github.com/owncloud/core * [new tag] v5.0.3 -> v5.0.3 Updating 48afa39..c745bfa Fast-forward apps/files/css/files.css | 2 +- apps/files/l10n/id.php | 29 +++- apps/files/l10n/sq.php | 5 + apps/files_external/l10n/sq.php | 3 + apps/files_external/l10n/tr.php | 4 + apps/files_sharing/l10n/sq.php | 9 + apps/files_trashbin/l10n/id.php | 1 + apps/user_ldap/group_ldap.php | 2 +- apps/user_ldap/l10n/sq.php | 4 + core/ajax/update.php | 10 +- core/l10n/id.php | 17 ++- core/l10n/sq.php | 139 +++++++++++++++ l10n/id/core.po | 37 ++-- l10n/id/files.po | 85 +++++----- l10n/id/files_trashbin.po | 10 +- l10n/id/lib.po | 8 +- l10n/id/settings.po | 107 ++++++------ l10n/pt_BR/settings.po | 4 +- l10n/sl/settings.po | 8 +- l10n/sq/core.po | 315 ++++++++++++++++++----------------- l10n/sq/files.po | 32 ++-- l10n/sq/files_external.po | 4 +- l10n/sq/files_sharing.po | 21 ++- l10n/sq/lib.po | 30 ++-- l10n/sq/settings.po | 12 +- l10n/sq/user_ldap.po | 6 +- l10n/templates/core.pot | 2 +- l10n/templates/files.pot | 2 +- l10n/templates/files_encryption.pot | 2 +- l10n/templates/files_external.pot | 2 +- l10n/templates/files_sharing.pot | 2 +- l10n/templates/files_trashbin.pot | 2 +- l10n/templates/files_versions.pot | 2 +- l10n/templates/lib.pot | 2 +- l10n/templates/settings.pot | 2 +- l10n/templates/user_ldap.pot | 2 +- l10n/templates/user_webdavauth.pot | 2 +- l10n/tr/files_external.po | 15 +- l10n/tr/settings.po | 27 ++-- lib/files/cache/legacy.php | 2 +- lib/files/cache/scanner.php | 66 +++++--- lib/files/view.php | 6 +- lib/l10n/id.php | 2 + lib/l10n/sq.php | 16 ++ lib/setup.php | 6 +- lib/templatelayout.php | 2 +- lib/user.php | 2 +- lib/util.php | 2 +- settings/l10n/id.php | 52 ++++++- settings/l10n/sl.php | 2 +- settings/l10n/sq.php | 6 + settings/l10n/tr.php | 12 +- settings/templates/admin.php | 2 +- 53 files changed, 730 insertions(+), 416 deletions(-) create mode 100644 apps/files/l10n/sq.php create mode 100644 apps/files_external/l10n/sq.php create mode 100644 apps/files_sharing/l10n/sq.php create mode 100644 apps/user_ldap/l10n/sq.php create mode 100644 core/l10n/sq.php create mode 100644 lib/l10n/sq.php create mode 100644 settings/l10n/sq.php
Download and Unpack
http://owncloud.org/support/install/
Install Documentation
http://doc.owncloud.org/server/5.0/admin_manual/installation.html
MySQL
http://linuxaria.com/recensioni/how-to-install-owncloud-on-your-linux-box?lang=en