Linux?
$ mysql -u root -p Enter password: (rootのパスワード入力) Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 13672 Server version: 5.1.49-3 (Debian) ~ Copyright (c) 2000, 2010, Oracle and/or its affiliates. All rights reserved. This software comes with ABSOLUTELY NO WARRANTY. This is free software, and you are welcome to modify and redistribute it under the GPL v2 license Type 'help;' or '\h' for help. Type '\c' to clear the current input statement. mysql> CREATE DATABASE clouddb DEFAULT CHARACTER SET utf8; Query OK, 1 row affected (0.07 sec) mysql> GRANT ALL PRIVILEGES ON clouddb.* TO mycloud@localhost IDENTIFIED BY 'xxx-password-xxx'; Query OK, 0 rows affected (0.13 sec) mysql> quit Bye
Alias /owncloud /mnt/apache/owncloud <Directory /mnt/apache/owncloud> Options None Order allow,deny allow from all </Directory>
http://localhost/owncloud
# cd /var/www/owncloud/settings/ # cp -p languageCodes.php languageCodes.php_orig # vi languageCodes.php
'id'=>'Bahasa Indonesia', 'it'=>'Italiano', 'ja_JP'=>'日本語', 'lb'=>'Lëtzebuergesch', 'ms_MY'=>'Bahasa Melayu', 'nb_NO'=>'Norwegian Bokmål',
<Directory "/mnt/apache/owncloud/data"> Options -Indexes IncludesNOEXEC FollowSymLinks AllowOverride None Order allow,deny </Directory> <Directory "/mnt/apache/owncloud/config"> AllowOverride None Order allow,deny </Directory> <Directory "/mnt/apache/owncloud/tests"> AllowOverride None Order allow,deny </Directory>
http://0.0.8.37/owncloud/files/webdav.php/dramsuko_Home_2.ics http://0.0.8.37/owncloud/files/webdav.php/dramsuko_定形外.ics http://0.0.8.37/owncloud/files/webdav.php/dramsuko.ics
sudo sh -c "echo 'deb http://download.opensuse.org/repositories/isv:/ownCloud:/community/xUbuntu_14.04/ /' >> /etc/apt/sources.list.d/owncloud.list"
sudo apt-get update sudo apt-get install owncloud