{"id":530,"date":"2018-04-27T02:19:54","date_gmt":"2018-04-27T07:19:54","guid":{"rendered":"https:\/\/linuxhostsupport.com\/blog\/?p=530"},"modified":"2020-08-02T11:51:28","modified_gmt":"2020-08-02T16:51:28","slug":"how-to-install-owncloud-10-on-debian-9","status":"publish","type":"post","link":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-owncloud-10-on-debian-9\/","title":{"rendered":"How to install OwnCloud 10 on Debian 9"},"content":{"rendered":"<div id=\"linux-151190177\" class=\"linux-before-1st-paragraph linux-entity-placement\" style=\"margin-top: 15px;margin-bottom: 15px;\"><a href=\"https:\/\/www.rosehosting.com\/managed-vps-hosting\/?mtm_campaign=blogs&#038;mtm_source=lhs&#038;mtm_medium=blog&#038;mtm_content=managed-vps&#038;mtm_cid=1339&#038;mtm_placement=inline\" aria-label=\"Untitled\"><img src=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340090_NVMeGoogleAds_728x90_041322.jpg\" alt=\"\"  srcset=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340090_NVMeGoogleAds_728x90_041322.jpg 728w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340090_NVMeGoogleAds_728x90_041322-300x37.jpg 300w\" sizes=\"(max-width: 728px) 100vw, 728px\" width=\"728\" height=\"90\"  style=\"display: inline-block;\" \/><\/a><\/div><p>ownCloud is a flexible, self-hosted open source PHP web application used for data synchronization and file sharing. ownCloud allows you to easily manage your files, calendars, contacts, to-do lists, and more, making it a great alternative to the popular Google Drive, Box, Dropbox, iCloud and other cloud platforms. Installing ownCloud on Debian, is fairly easy task and should not take more than 15 minutes. This guide should work on other Debian based systems as well but was tested and written for Debian 9 VPS. Let\u2019s get started with installing ownCloud on your Debian 9 server.<\/p>\n<p><!--more--><\/p>\n<h2>1. Install MySQL Server<\/h2>\n<p>ownCloud can use MySQL\/MariaDB, PostgreSQL, or SQLite as a backend data storage. In this guide we will use MariaDB as database engine.\u00a0 To install the MariaDB server\u00a0 run the following command:<\/p>\n<pre>sudo apt install mariadb-server<\/pre>\n<p>When the installation is complete, run the following commands to start and enable the MariaDB service :<\/p>\n<pre>sudo systemctl start mariadb\r\nsudo systemctl enable mariadb<\/pre>\n<p>To secure your installation and to setup the root password issue:<\/p>\n<pre>sudo mysql_secure_installation<\/pre>\n<h2>2. Create MySQL Database and Usser<\/h2>\n<p>To create a database and mysql user for our ownCloud installation run the following commands:<\/p>\n<pre>mysql -u root -p\r\nMariaDB [(none)]&gt; CREATE DATABASE owncloud CHARACTER SET utf8;\r\nMariaDB [(none)]&gt; GRANT ALL PRIVILEGES ON owncloud.* TO 'owncloud'@'localhost' IDENTIFIED BY 'owncloud_passwd';\r\nMariaDB [(none)]&gt; FLUSH PRIVILEGES;\r\nMariaDB [(none)]&gt; \\q<\/pre>\n<h2>Install Redis<\/h2>\n<p>Redis is an in-memory database which will be used by the ownCLoud installation as memory cache. To install the latest Redis version from the default Debian repositories run the following command:<\/p>\n<pre>sudo apt install redis-server<\/pre>\n<h2>3. Install Apache and PHP<\/h2>\n<p>Installing Apache, PHP and PHP modules is pretty straightforward process, just issue the following command:<\/p>\n<pre>sudo apt install apache2 mariadb-server libapache2-mod-php7.0 \\\r\n    openssl php-imagick php7.0-common php7.0-curl php7.0-gd \\\r\n    php7.0-imap php7.0-intl php7.0-json php7.0-ldap php7.0-mbstring \\\r\n    php7.0-mcrypt php7.0-mysql php7.0-pgsql php-smbclient php-ssh2 \\\r\n    php7.0-sqlite3 php7.0-xml php7.0-zip php-redis php-apcu<\/pre>\n<p>When the installation is complete, run the following commands to start and enable the Apache service :<\/p>\n<pre>sudo systemctl start apache2\r\nsudo systemctl enable apache2<\/pre>\n<h2>4. Install ownCloud<\/h2>\n<p>The ownCLoud 10 package is not available in default Debian 9 repositories so we will install the package from the official ownCLoud repositories. First add the ownCloud GPG key to the apt sources keyring:<\/p>\n<pre>wget -qO- https:\/\/download.owncloud.org\/download\/repositories\/stable\/Debian_9.0\/Release.key | sudo apt-key add -<\/pre>\n<p>once the key is added run the following command to enable the ownCLoud repository:<\/p>\n<pre>echo 'deb https:\/\/download.owncloud.org\/download\/repositories\/stable\/Debian_9.0\/ \/' | sudo tee \/etc\/apt\/sources.list.d\/owncloud.list<\/pre>\n<p>Before installing the ownCLoud package we need to enable HTTPS transport for the debian apt tool by installing the following package:<\/p>\n<pre>sudo apt install apt-transport-https<\/pre>\n<p>Update the apt cache list and install the ownCLoud package with the following command:<\/p>\n<pre>sudo apt update \r\nsudo apt install owncloud-files<\/pre>\n<p>The command above will install the ownCLoud files in the <code>\/var\/www\/owncloud<\/code> directory.<\/p>\n<h2>5. Configure Apache<\/h2>\n<p>To configure the Apache web server to serve the ownCLoud directory create a new configuration file with the following content:<\/p>\n<pre>sudo nano \/etc\/apache2\/sites-available\/owncloud.conf<\/pre>\n<pre>Alias \/owncloud \"\/var\/www\/owncloud\/\"\r\n\r\n&lt;Directory \/var\/www\/owncloud\/&gt;\r\nOptions +FollowSymlinks\r\nAllowOverride All\r\n\r\n&lt;IfModule mod_dav.c&gt;\r\nDav off\r\n&lt;\/IfModule&gt;\r\n\r\nSetEnv HOME \/var\/www\/owncloud\r\nSetEnv HTTP_HOME \/var\/www\/owncloud\r\n\r\n&lt;\/Directory&gt;\r\n<\/pre>\n<p>Enable the Apache ownCloud configuration:<\/p>\n<pre>sudo a2ensite owncloud<\/pre>\n<p>and restart the Apache web server:<\/p>\n<pre> sudo systemctl restart apache2<\/pre>\n<p>Finally set the correct permissions, so the ownCLoud can upload files:<\/p>\n<pre>sudo chown -R www-data: \/var\/www\/owncloud\/<\/pre>\n<h2>6. Finish the ownCLoud installation<\/h2>\n<p>In the last step of this guide we need to access to ownCLoud Web Interface and finish the installation.<\/p>\n<p>To finish the installation open your browser and navigate to http:\/\/your_server_ip_address\/owncloud\/.<\/p>\n<p><img decoding=\"async\" class=\"aligncenter size-full wp-image-533\" src=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2018\/04\/installing-OwnCloud-10-on-Debian-9.jpg\" alt=\"How to install OwnCloud 10 on Debian 9\" width=\"600\" height=\"650\" srcset=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2018\/04\/installing-OwnCloud-10-on-Debian-9.jpg 600w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2018\/04\/installing-OwnCloud-10-on-Debian-9-277x300.jpg 277w\" sizes=\"(max-width: 600px) 100vw, 600px\" \/><\/p>\n<p>To create your first admin user enter the Username and Password under the &#8220;Create an admin account&#8221; label, next click on the &#8220;Storage &amp; Database&#8221; link which will give you an option to select your database backed. Leave the default &#8220;Data Folder&#8221; value &#8220;\/var\/www\/owncloud\/data&#8221; and under the &#8220;Configure the database&#8221; label and select &#8220;MySQL\/MariaDB&#8221;. In the database fields enter the database user, the database user password and the database name you previously created. Finally clock on the blue &#8220;Finish setup&#8221; button and the ownCLoud installer will populate the database and redirect you to the ownCloud login screen.<\/p>\n<hr \/>\n<p>That&#8217;s it. You have successfully installed ownCloud 10 server on your Debian 9 VPS. For more information about how to manage your ownCloud installation, please refer to the official\u00a0<a title=\"ownCloud\" href=\"https:\/\/doc.owncloud.org\/server\/latest\/user_manual\/\" target=\"_blank\" rel=\"noopener noreferrer\">ownCloud<\/a> User Manual.<\/p>\n<hr \/>\n<p>Of course you don\u2019t have to\u00a0Install ownCloud on your Debian 9 server, if you use one of our <a href=\"https:\/\/linuxhostsupport.com\">Linux Support\u00a0Services<\/a>, in which case you can simply ask our expert Linux admins to setup this for you. They are available 24&#215;7 and will take care of your request immediately.<\/p>\n<p><strong><span style=\"color: #ff0000;\">PS<\/span><\/strong>. If you liked this post, on How To Install ownCloud 10 on Debian 9, please share it with your friends on the social networks using the buttons on the left or simply leave a reply below. Thanks.<\/p><div id=\"linux-3989253625\" class=\"linux-after-8th-paragraph linux-entity-placement\" style=\"margin-top: 15px;margin-bottom: 15px;\"><a href=\"https:\/\/www.rosehosting.com\/managed-vps-hosting\/?mtm_campaign=blogs&#038;mtm_source=lhs&#038;mtm_medium=blog&#038;mtm_content=managed-vps&#038;mtm_cid=1340&#038;mtm_placement=inline\" aria-label=\"Untitled\"><img src=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340095_VPSGoogleAds_728x90_042622.jpg\" alt=\"\"  srcset=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340095_VPSGoogleAds_728x90_042622.jpg 728w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340095_VPSGoogleAds_728x90_042622-300x37.jpg 300w\" sizes=\"(max-width: 728px) 100vw, 728px\" width=\"728\" height=\"90\"  style=\"display: inline-block;\" \/><\/a><\/div>\n","protected":false},"excerpt":{"rendered":"<p>ownCloud is a flexible, self-hosted open source PHP web application used for data synchronization and file sharing. ownCloud allows you to easily manage your files, calendars, contacts, to-do lists, and more, making it a great alternative to the popular Google Drive, Box, Dropbox, iCloud and other cloud platforms. Installing ownCloud on Debian, is fairly easy [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":531,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[2],"tags":[81,24],"class_list":["post-530","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-tutorials","tag-debian-9","tag-owncloud"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How to install OwnCloud 10 on Debian 9 | LinuxHostSupport<\/title>\n<meta name=\"description\" content=\"ownCloud is a flexible, self-hosted open source PHP web application used for data synchronization and file sharing. ownCloud allows you to easily manage\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/linuxhostsupport.com\/blog\/how-to-install-owncloud-10-on-debian-9\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to install OwnCloud 10 on Debian 9 | LinuxHostSupport\" \/>\n<meta property=\"og:description\" content=\"ownCloud is a flexible, self-hosted open source PHP web application used for data synchronization and file sharing. ownCloud allows you to easily manage\" \/>\n<meta property=\"og:url\" content=\"https:\/\/linuxhostsupport.com\/blog\/how-to-install-owncloud-10-on-debian-9\/\" \/>\n<meta property=\"og:site_name\" content=\"LinuxHostSupport\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/linuxhostsupport\" \/>\n<meta property=\"article:published_time\" content=\"2018-04-27T07:19:54+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2020-08-02T16:51:28+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2018\/04\/How-to-install-OwnCloud-10-on-Debian-9.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"750\" \/>\n\t<meta property=\"og:image:height\" content=\"410\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"admin\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@lnxhostsupport\" \/>\n<meta name=\"twitter:site\" content=\"@lnxhostsupport\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"admin\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-owncloud-10-on-debian-9\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-owncloud-10-on-debian-9\\\/\"},\"author\":{\"name\":\"admin\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/#\\\/schema\\\/person\\\/53a9571ea078cdf350137a1e97423cfb\"},\"headline\":\"How to install OwnCloud 10 on Debian 9\",\"datePublished\":\"2018-04-27T07:19:54+00:00\",\"dateModified\":\"2020-08-02T16:51:28+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-owncloud-10-on-debian-9\\\/\"},\"wordCount\":644,\"commentCount\":17,\"image\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-owncloud-10-on-debian-9\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/wp-content\\\/uploads\\\/2018\\\/04\\\/How-to-install-OwnCloud-10-on-Debian-9.jpg\",\"keywords\":[\"debian 9\",\"owncloud\"],\"articleSection\":[\"Tutorials\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-owncloud-10-on-debian-9\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-owncloud-10-on-debian-9\\\/\",\"url\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-owncloud-10-on-debian-9\\\/\",\"name\":\"How to install OwnCloud 10 on Debian 9 | LinuxHostSupport\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-owncloud-10-on-debian-9\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-owncloud-10-on-debian-9\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/wp-content\\\/uploads\\\/2018\\\/04\\\/How-to-install-OwnCloud-10-on-Debian-9.jpg\",\"datePublished\":\"2018-04-27T07:19:54+00:00\",\"dateModified\":\"2020-08-02T16:51:28+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/#\\\/schema\\\/person\\\/53a9571ea078cdf350137a1e97423cfb\"},\"description\":\"ownCloud is a flexible, self-hosted open source PHP web application used for data synchronization and file sharing. ownCloud allows you to easily manage\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-owncloud-10-on-debian-9\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-owncloud-10-on-debian-9\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-owncloud-10-on-debian-9\\\/#primaryimage\",\"url\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/wp-content\\\/uploads\\\/2018\\\/04\\\/How-to-install-OwnCloud-10-on-Debian-9.jpg\",\"contentUrl\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/wp-content\\\/uploads\\\/2018\\\/04\\\/How-to-install-OwnCloud-10-on-Debian-9.jpg\",\"width\":750,\"height\":410,\"caption\":\"How to install OwnCloud 10 on Debian 9\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-owncloud-10-on-debian-9\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to install OwnCloud 10 on Debian 9\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/\",\"name\":\"LinuxHostSupport\",\"description\":\"Linux Tutorials and Guides\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/#\\\/schema\\\/person\\\/53a9571ea078cdf350137a1e97423cfb\",\"name\":\"admin\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g\",\"caption\":\"admin\"},\"url\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/author\\\/r0s3admin\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to install OwnCloud 10 on Debian 9 | LinuxHostSupport","description":"ownCloud is a flexible, self-hosted open source PHP web application used for data synchronization and file sharing. ownCloud allows you to easily manage","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-owncloud-10-on-debian-9\/","og_locale":"en_US","og_type":"article","og_title":"How to install OwnCloud 10 on Debian 9 | LinuxHostSupport","og_description":"ownCloud is a flexible, self-hosted open source PHP web application used for data synchronization and file sharing. ownCloud allows you to easily manage","og_url":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-owncloud-10-on-debian-9\/","og_site_name":"LinuxHostSupport","article_publisher":"https:\/\/www.facebook.com\/linuxhostsupport","article_published_time":"2018-04-27T07:19:54+00:00","article_modified_time":"2020-08-02T16:51:28+00:00","og_image":[{"width":750,"height":410,"url":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2018\/04\/How-to-install-OwnCloud-10-on-Debian-9.jpg","type":"image\/jpeg"}],"author":"admin","twitter_card":"summary_large_image","twitter_creator":"@lnxhostsupport","twitter_site":"@lnxhostsupport","twitter_misc":{"Written by":"admin","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-owncloud-10-on-debian-9\/#article","isPartOf":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-owncloud-10-on-debian-9\/"},"author":{"name":"admin","@id":"https:\/\/linuxhostsupport.com\/blog\/#\/schema\/person\/53a9571ea078cdf350137a1e97423cfb"},"headline":"How to install OwnCloud 10 on Debian 9","datePublished":"2018-04-27T07:19:54+00:00","dateModified":"2020-08-02T16:51:28+00:00","mainEntityOfPage":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-owncloud-10-on-debian-9\/"},"wordCount":644,"commentCount":17,"image":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-owncloud-10-on-debian-9\/#primaryimage"},"thumbnailUrl":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2018\/04\/How-to-install-OwnCloud-10-on-Debian-9.jpg","keywords":["debian 9","owncloud"],"articleSection":["Tutorials"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/linuxhostsupport.com\/blog\/how-to-install-owncloud-10-on-debian-9\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-owncloud-10-on-debian-9\/","url":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-owncloud-10-on-debian-9\/","name":"How to install OwnCloud 10 on Debian 9 | LinuxHostSupport","isPartOf":{"@id":"https:\/\/linuxhostsupport.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-owncloud-10-on-debian-9\/#primaryimage"},"image":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-owncloud-10-on-debian-9\/#primaryimage"},"thumbnailUrl":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2018\/04\/How-to-install-OwnCloud-10-on-Debian-9.jpg","datePublished":"2018-04-27T07:19:54+00:00","dateModified":"2020-08-02T16:51:28+00:00","author":{"@id":"https:\/\/linuxhostsupport.com\/blog\/#\/schema\/person\/53a9571ea078cdf350137a1e97423cfb"},"description":"ownCloud is a flexible, self-hosted open source PHP web application used for data synchronization and file sharing. ownCloud allows you to easily manage","breadcrumb":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-owncloud-10-on-debian-9\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/linuxhostsupport.com\/blog\/how-to-install-owncloud-10-on-debian-9\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-owncloud-10-on-debian-9\/#primaryimage","url":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2018\/04\/How-to-install-OwnCloud-10-on-Debian-9.jpg","contentUrl":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2018\/04\/How-to-install-OwnCloud-10-on-Debian-9.jpg","width":750,"height":410,"caption":"How to install OwnCloud 10 on Debian 9"},{"@type":"BreadcrumbList","@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-owncloud-10-on-debian-9\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/linuxhostsupport.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to install OwnCloud 10 on Debian 9"}]},{"@type":"WebSite","@id":"https:\/\/linuxhostsupport.com\/blog\/#website","url":"https:\/\/linuxhostsupport.com\/blog\/","name":"LinuxHostSupport","description":"Linux Tutorials and Guides","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/linuxhostsupport.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/linuxhostsupport.com\/blog\/#\/schema\/person\/53a9571ea078cdf350137a1e97423cfb","name":"admin","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g","caption":"admin"},"url":"https:\/\/linuxhostsupport.com\/blog\/author\/r0s3admin\/"}]}},"_links":{"self":[{"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/posts\/530","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/comments?post=530"}],"version-history":[{"count":3,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/posts\/530\/revisions"}],"predecessor-version":[{"id":1233,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/posts\/530\/revisions\/1233"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/media\/531"}],"wp:attachment":[{"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/media?parent=530"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/categories?post=530"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/tags?post=530"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}