{"id":5184,"date":"2015-06-10T08:10:39","date_gmt":"2015-06-10T08:10:39","guid":{"rendered":"https:\/\/bodhost.com\/kb\/?p=5184"},"modified":"2026-02-26T14:03:13","modified_gmt":"2026-02-26T14:03:13","slug":"installing-owncloud-on-debian","status":"publish","type":"post","link":"https:\/\/www.bodhost.com\/kb\/installing-owncloud-on-debian\/","title":{"rendered":"ownCloud Installation with Linux Distribution"},"content":{"rendered":"<div class=\"wp-block-image\">\r\n<figure class=\"aligncenter is-resized\"><img loading=\"lazy\" decoding=\"async\" class=\"wp-image-5185\" src=\"https:\/\/bodhost.com\/kb\/wp-content\/uploads\/2015\/06\/Logo_OwnCloud.png\" alt=\"Logo_OwnCloud\" width=\"475\" height=\"278\" srcset=\"https:\/\/www.bodhost.com\/kb\/wp-content\/uploads\/2015\/06\/Logo_OwnCloud.png 796w, https:\/\/www.bodhost.com\/kb\/wp-content\/uploads\/2015\/06\/Logo_OwnCloud-300x176.png 300w\" sizes=\"auto, (max-width: 475px) 100vw, 475px\" \/><\/figure>\r\n<\/div>\r\n\r\n\r\n<ol class=\"wp-block-list\">\r\n<li>What is ownCloud?<\/li>\r\n\r\n\r\n\r\n<li>How to prepare a web server for installation?<\/li>\r\n\r\n\r\n\r\n<li>Installation of ownCloud<\/li>\r\n\r\n\r\n\r\n<li>Completion of the establishment<\/li>\r\n<\/ol>\r\n\r\n\r\n\r\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\r\n<p class=\"wp-block-paragraph\"><strong>First, we\u2019ll see what exactly ownCloud is!<\/strong><\/p>\r\n<\/blockquote>\r\n\r\n\r\n\r\n<p class=\"wp-block-paragraph\">It is an open-source application for cloud storage and online file management. Basically, it is similar to the famous DropBox, because it can store and synchronize files between one or more workstations or servers and ownCloud server. It is also fulfilling the role of a <strong><a href=\"https:\/\/www.bodhost.com\/security\/remote-backups\" target=\"_blank\" rel=\"noreferrer noopener\">backup server<\/a><\/strong> for safekeeping files and server synchronization. To implement this service you must have a web server running PHP and MySQL or SQLite.<\/p>\r\n\r\n\r\n\r\n<p class=\"wp-block-paragraph\">Among all these features, there is obviously the possibility to share files; also you can play music directly online with the integrated player, can manage a calendar, contact management, view and editing documents online, visualization and file photos in galleries, etc\u2026. Moreover, many plugins are available in order to insert new functionality to ownCloud.<\/p>\r\n\r\n\r\n\r\n<p class=\"wp-block-paragraph\">Here, we took a Debian server and we are going to see together how to install ownCloud with Apache on a web server that is coupled with PHP and SQLite.<\/p>\r\n\r\n\r\n\r\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\r\n<p class=\"wp-block-paragraph\"><strong>But, before we proceed, it is important to know how to prepare web server for the installation!!!<\/strong><\/p>\r\n\r\n\r\n\r\n<p class=\"wp-block-paragraph\">Before installing ownCloud application, ensure that your web server is equipped with essentials. If you haven\u2019t, then first install Apache and PHP libraries for ownCloud\u2019s different needs. We will enter the following commands:<\/p>\r\n<\/blockquote>\r\n\r\n\r\n\r\n<pre class=\"wp-block-preformatted\">apt-get update\r\napt-get install apache2 php5 php5-common php5-gd\r\napt-get install php5-sqlite curl libcurl3 libcurl3-dev php5-curl\r\n<\/pre>\r\n\r\n\r\n\r\n<p class=\"wp-block-paragraph\">For information, we install apache2, php5 and SQLite, and several PHP modules. However, MySQL installs automatically with ownCloud during the installation via apt-get.<\/p>\r\n\r\n\r\n\r\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\r\n<p class=\"wp-block-paragraph\"><strong>Installation of ownCloud<\/strong><\/p>\r\n<\/blockquote>\r\n\r\n\r\n\r\n<p class=\"wp-block-paragraph\">Now we continue with the installation of ownCloud. Following are the commands that we would type:<\/p>\r\n\r\n\r\n\r\n<pre class=\"wp-block-preformatted\">echo 'deb http:\/\/download.opensuse.org\/repositories\/isv:\/ownCloud:\/community\/Debian_7.0\/ \/' &gt;&gt;\r\n\/etc\/apt\/sources.list.d\/owncloud.list \r\napt-get update\r\napt-get install owncloud \r\n<\/pre>\r\n\r\n\r\n\r\n<p class=\"wp-block-paragraph\">Here, we just insert a new row to the repository containing ownCloud Addons to our sources.list and then we updated our deposits and installed ownCloud. When installing ownCloud, MySQL database service is also installed, it will then have to indicate a password twice for the \u201croot\u201d or MySQL.<\/p>\r\n\r\n\r\n\r\n<pre class=\"wp-block-preformatted\">Note: PHP5 packages allowing PHP to communicate with MySQL, \r\nwhich is also installed automatically during installation of ownCloud.\r\nSo it makes our work easier.<\/pre>\r\n\r\n\r\n\r\n<p class=\"wp-block-paragraph\">We will then set the \u201cgroup www-data\u201d, containing the user of the same name used by Apache as a group owner on useful directories in the operation of ownCloud. We will seize it for the following commands:<\/p>\r\n\r\n\r\n\r\n<pre class=\"wp-block-preformatted\">cd \/var\/www\/\r\nchown www-data:www-data -R owncloud\/\r\n<\/pre>\r\n\r\n\r\n\r\n<p class=\"wp-block-paragraph\">Then we will move on the change the permission on these directories, the option \u201c-R\u201d allows for recursion, that is to say, the rights of the changes will apply to all sub-directories as well:<\/p>\r\n\r\n\r\n\r\n<pre class=\"wp-block-preformatted\">chmod 770 -R owncloud\/<\/pre>\r\n\r\n\r\n\r\n<p class=\"wp-block-paragraph\">For ownCloud work correctly in Apache, activate modules rewrite and headers in Apache. Rewrite allows URL rewriting and headers allow managing the headers of HTTP requests and responses:<\/p>\r\n\r\n\r\n\r\n<pre class=\"wp-block-preformatted\">a2enmod rewrite\r\na2enmod headers\r\n<\/pre>\r\n\r\n\r\n\r\n<p class=\"wp-block-paragraph\">For security, you must prevent access to the \u201cdirectory data\u201d of ownCloud. For this, a file .htaccess is already present and preconfigured in ownCloud. It contains a directive to deny access to everyone and a second for preventing the listing of any directory contents:<\/p>\r\n\r\n\r\n\r\n<pre class=\"wp-block-preformatted\">deny from all\r\nIndexIgnore *\r\n<\/pre>\r\n\r\n\r\n\r\n<pre class=\"wp-block-preformatted\">Note: \"data\" is the data directory of ownCloud.<\/pre>\r\n\r\n\r\n\r\n<p class=\"wp-block-paragraph\">So the .htaccess file is taken into account, and the directive allows override of your web server that must be set to \u201cAll\u201d and not \u201cNone\u201d if the files .htaccess are ignored. Change the default file located in \u201c\/etc\/apache2\/sites-enabled\u201d to obtain this:<\/p>\r\n\r\n\r\n\r\n<pre class=\"wp-block-preformatted\">   Options -Indexes FollowSymLinks MultiViews\r\n   AllowOverride ALL\r\n   Order allow,deny\r\n   allow from all\r\n<\/pre>\r\n\r\n\r\n\r\n<p class=\"wp-block-paragraph\">Then, finally, we can restart the Apache server:<\/p>\r\n\r\n\r\n\r\n<pre class=\"wp-block-preformatted\">service apache2 restart<\/pre>\r\n\r\n\r\n\r\n<p class=\"wp-block-paragraph\">Access from the browser on data from the data folder should be blocked.<\/p>\r\n\r\n\r\n\r\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\r\n<p class=\"wp-block-paragraph\"><strong>Completion of the establishment!!!<\/strong><\/p>\r\n<\/blockquote>\r\n\r\n\r\n\r\n<p class=\"wp-block-paragraph\">Finally, go to ownCloud from the web interface to complete the installation and create the \u201cuser admin\u201d. Then, go to the web browser and enter the URL. For example http:\/\/domain_IP\/ownCloud.<\/p>\r\n\r\n\r\n\r\n<p class=\"wp-block-paragraph\">There you will see that the system SQLite database is sufficient for standard installations. If you do not think you need a very large volume for your ownCloud, simply enter the username and password of your admin user and click \u201cFinish the Installation\u201d.<\/p>\r\n\r\n\r\n\r\n<p class=\"wp-block-paragraph\">But if you know your ownCloud will have to handle a certain load, click on \u201cStorage and Database\u201d to access the possibility of using other database systems. Then select MySQL or MariaDB.<\/p>\r\n\r\n\r\n\r\n<p class=\"wp-block-paragraph\">If you are using MySQL, it will go from the command line on your MySQL interface to seize control lines that will create a database and a user dedicated to ownCloud. It creates the user and the database.<\/p>\r\n\r\n\r\n\r\n<pre class=\"wp-block-preformatted\">CREATE USER \"owncloud\"@\"localhost\" IDENTIFIED BY \"password\";\r\nCREATE DATABASE owncloud;\r\n<\/pre>\r\n\r\n\r\n\r\n<pre class=\"wp-block-preformatted\">Note: Remember to replace \"password\" with a strong password.<\/pre>\r\n\r\n\r\n\r\n<p class=\"wp-block-paragraph\">We give all the rights to the user on the database:<\/p>\r\n\r\n\r\n\r\n<pre class=\"wp-block-preformatted\">GRANT ALL PRIVILEGES ON owncloud.* TO \"owncloud\"@\"localhost\";\r\nFLUSH PRIVILEGES;\r\n<\/pre>\r\n\r\n\r\n\r\n<p class=\"wp-block-paragraph\">It will then fill in the fields (user, password, name of the database\u2026):<\/p>\r\n\r\n\r\n\r\n<p class=\"wp-block-paragraph\">Remember to enter the password for your main administrator and click &#8220;Finish the installation&#8221;.<\/p>\r\n\r\n\r\n\r\n<p class=\"wp-block-paragraph\">OwnCloud is ready, everything is functional. You can log in with the user&#8221; admin &#8220;by going to the URL&#8221; http: \/\/ domain_IP \/ owncloud&#8221;<\/p>\r\n\r\n\r\n\r\n<p class=\"wp-block-paragraph\"><strong>It only remains to have fun with OwnCloud!!!<\/strong><\/p>\r\n","protected":false},"excerpt":{"rendered":"<p>First, we\u2019ll see what exactly ownCloud is! It is an open-source application for cloud storage and online file management. Basically, it is similar to the famous DropBox, because it can&hellip;<\/p>\n<p><a href=\"https:\/\/www.bodhost.com\/kb\/installing-owncloud-on-debian\/\" class=\"more-link\">Read More<\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[174],"tags":[674,673],"class_list":["post-5184","post","type-post","status-publish","format-standard","hentry","category-cloud-server-hosting","tag-owncloud-install-debian","tag-owncloud-install-debian-7"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.8 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>ownCloud Installation with Linux Distribution<\/title>\n<meta name=\"description\" content=\"Effortlessly install ownCloud on your Linux distribution and enjoy secure and convenient file sharing and collaboration. Get started now!\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.bodhost.com\/kb\/installing-owncloud-on-debian\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"ownCloud Installation with Linux Distribution\" \/>\n<meta property=\"og:description\" content=\"Effortlessly install ownCloud on your Linux distribution and enjoy secure and convenient file sharing and collaboration. Get started now!\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.bodhost.com\/kb\/installing-owncloud-on-debian\/\" \/>\n<meta property=\"og:site_name\" content=\"Knowledge Base - bodHOST\" \/>\n<meta property=\"article:published_time\" content=\"2015-06-10T08:10:39+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-02-26T14:03:13+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.bodhost.com\/kb\/wp-content\/uploads\/2015\/06\/Logo_OwnCloud.png\" \/>\n\t<meta property=\"og:image:width\" content=\"796\" \/>\n\t<meta property=\"og:image:height\" content=\"466\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"admin\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\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:\\\/\\\/www.bodhost.com\\\/kb\\\/installing-owncloud-on-debian\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/installing-owncloud-on-debian\\\/\"},\"author\":{\"name\":\"admin\",\"@id\":\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/#\\\/schema\\\/person\\\/c48414ad1536cea20e85282b0737a9f9\"},\"headline\":\"ownCloud Installation with Linux Distribution\",\"datePublished\":\"2015-06-10T08:10:39+00:00\",\"dateModified\":\"2026-02-26T14:03:13+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/installing-owncloud-on-debian\\\/\"},\"wordCount\":754,\"publisher\":{\"@id\":\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/installing-owncloud-on-debian\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/bodhost.com\\\/kb\\\/wp-content\\\/uploads\\\/2015\\\/06\\\/Logo_OwnCloud.png\",\"keywords\":[\"owncloud install debian\",\"owncloud install debian 7\"],\"articleSection\":[\"Cloud Server Hosting\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/installing-owncloud-on-debian\\\/\",\"url\":\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/installing-owncloud-on-debian\\\/\",\"name\":\"ownCloud Installation with Linux Distribution\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/installing-owncloud-on-debian\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/installing-owncloud-on-debian\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/bodhost.com\\\/kb\\\/wp-content\\\/uploads\\\/2015\\\/06\\\/Logo_OwnCloud.png\",\"datePublished\":\"2015-06-10T08:10:39+00:00\",\"dateModified\":\"2026-02-26T14:03:13+00:00\",\"description\":\"Effortlessly install ownCloud on your Linux distribution and enjoy secure and convenient file sharing and collaboration. Get started now!\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/installing-owncloud-on-debian\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/installing-owncloud-on-debian\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/installing-owncloud-on-debian\\\/#primaryimage\",\"url\":\"https:\\\/\\\/bodhost.com\\\/kb\\\/wp-content\\\/uploads\\\/2015\\\/06\\\/Logo_OwnCloud.png\",\"contentUrl\":\"https:\\\/\\\/bodhost.com\\\/kb\\\/wp-content\\\/uploads\\\/2015\\\/06\\\/Logo_OwnCloud.png\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/installing-owncloud-on-debian\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Cloud Server Hosting\",\"item\":\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/category\\\/cloud-server-hosting\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"ownCloud Installation with Linux Distribution\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/#website\",\"url\":\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/\",\"name\":\"Web Hosting Knowledge Base | bodHOST Hosting FAQ\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/#organization\"},\"alternateName\":\"Web Hosting Knowledge Base | bodHOST Hosting FAQ\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/#organization\",\"name\":\"Web Hosting Knowledge Base | bodHOST Hosting FAQ\",\"url\":\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/wp-content\\\/uploads\\\/2025\\\/10\\\/Profile-Pic.png\",\"contentUrl\":\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/wp-content\\\/uploads\\\/2025\\\/10\\\/Profile-Pic.png\",\"width\":240,\"height\":240,\"caption\":\"Web Hosting Knowledge Base | bodHOST Hosting FAQ\"},\"image\":{\"@id\":\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/#\\\/schema\\\/logo\\\/image\\\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/#\\\/schema\\\/person\\\/c48414ad1536cea20e85282b0737a9f9\",\"name\":\"admin\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/51e53199212db3f59606920448d45a6ead224f904558e3ab9251d071a609b202?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/51e53199212db3f59606920448d45a6ead224f904558e3ab9251d071a609b202?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/51e53199212db3f59606920448d45a6ead224f904558e3ab9251d071a609b202?s=96&d=mm&r=g\",\"caption\":\"admin\"},\"url\":\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/author\\\/admin\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"ownCloud Installation with Linux Distribution","description":"Effortlessly install ownCloud on your Linux distribution and enjoy secure and convenient file sharing and collaboration. Get started now!","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:\/\/www.bodhost.com\/kb\/installing-owncloud-on-debian\/","og_locale":"en_US","og_type":"article","og_title":"ownCloud Installation with Linux Distribution","og_description":"Effortlessly install ownCloud on your Linux distribution and enjoy secure and convenient file sharing and collaboration. Get started now!","og_url":"https:\/\/www.bodhost.com\/kb\/installing-owncloud-on-debian\/","og_site_name":"Knowledge Base - bodHOST","article_published_time":"2015-06-10T08:10:39+00:00","article_modified_time":"2026-02-26T14:03:13+00:00","og_image":[{"width":796,"height":466,"url":"https:\/\/www.bodhost.com\/kb\/wp-content\/uploads\/2015\/06\/Logo_OwnCloud.png","type":"image\/png"}],"author":"admin","twitter_card":"summary_large_image","twitter_misc":{"Written by":"admin","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.bodhost.com\/kb\/installing-owncloud-on-debian\/#article","isPartOf":{"@id":"https:\/\/www.bodhost.com\/kb\/installing-owncloud-on-debian\/"},"author":{"name":"admin","@id":"https:\/\/www.bodhost.com\/kb\/#\/schema\/person\/c48414ad1536cea20e85282b0737a9f9"},"headline":"ownCloud Installation with Linux Distribution","datePublished":"2015-06-10T08:10:39+00:00","dateModified":"2026-02-26T14:03:13+00:00","mainEntityOfPage":{"@id":"https:\/\/www.bodhost.com\/kb\/installing-owncloud-on-debian\/"},"wordCount":754,"publisher":{"@id":"https:\/\/www.bodhost.com\/kb\/#organization"},"image":{"@id":"https:\/\/www.bodhost.com\/kb\/installing-owncloud-on-debian\/#primaryimage"},"thumbnailUrl":"https:\/\/bodhost.com\/kb\/wp-content\/uploads\/2015\/06\/Logo_OwnCloud.png","keywords":["owncloud install debian","owncloud install debian 7"],"articleSection":["Cloud Server Hosting"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/www.bodhost.com\/kb\/installing-owncloud-on-debian\/","url":"https:\/\/www.bodhost.com\/kb\/installing-owncloud-on-debian\/","name":"ownCloud Installation with Linux Distribution","isPartOf":{"@id":"https:\/\/www.bodhost.com\/kb\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.bodhost.com\/kb\/installing-owncloud-on-debian\/#primaryimage"},"image":{"@id":"https:\/\/www.bodhost.com\/kb\/installing-owncloud-on-debian\/#primaryimage"},"thumbnailUrl":"https:\/\/bodhost.com\/kb\/wp-content\/uploads\/2015\/06\/Logo_OwnCloud.png","datePublished":"2015-06-10T08:10:39+00:00","dateModified":"2026-02-26T14:03:13+00:00","description":"Effortlessly install ownCloud on your Linux distribution and enjoy secure and convenient file sharing and collaboration. Get started now!","breadcrumb":{"@id":"https:\/\/www.bodhost.com\/kb\/installing-owncloud-on-debian\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.bodhost.com\/kb\/installing-owncloud-on-debian\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.bodhost.com\/kb\/installing-owncloud-on-debian\/#primaryimage","url":"https:\/\/bodhost.com\/kb\/wp-content\/uploads\/2015\/06\/Logo_OwnCloud.png","contentUrl":"https:\/\/bodhost.com\/kb\/wp-content\/uploads\/2015\/06\/Logo_OwnCloud.png"},{"@type":"BreadcrumbList","@id":"https:\/\/www.bodhost.com\/kb\/installing-owncloud-on-debian\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Cloud Server Hosting","item":"https:\/\/www.bodhost.com\/kb\/category\/cloud-server-hosting\/"},{"@type":"ListItem","position":2,"name":"ownCloud Installation with Linux Distribution"}]},{"@type":"WebSite","@id":"https:\/\/www.bodhost.com\/kb\/#website","url":"https:\/\/www.bodhost.com\/kb\/","name":"Web Hosting Knowledge Base | bodHOST Hosting FAQ","description":"","publisher":{"@id":"https:\/\/www.bodhost.com\/kb\/#organization"},"alternateName":"Web Hosting Knowledge Base | bodHOST Hosting FAQ","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.bodhost.com\/kb\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.bodhost.com\/kb\/#organization","name":"Web Hosting Knowledge Base | bodHOST Hosting FAQ","url":"https:\/\/www.bodhost.com\/kb\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.bodhost.com\/kb\/#\/schema\/logo\/image\/","url":"https:\/\/www.bodhost.com\/kb\/wp-content\/uploads\/2025\/10\/Profile-Pic.png","contentUrl":"https:\/\/www.bodhost.com\/kb\/wp-content\/uploads\/2025\/10\/Profile-Pic.png","width":240,"height":240,"caption":"Web Hosting Knowledge Base | bodHOST Hosting FAQ"},"image":{"@id":"https:\/\/www.bodhost.com\/kb\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/www.bodhost.com\/kb\/#\/schema\/person\/c48414ad1536cea20e85282b0737a9f9","name":"admin","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/51e53199212db3f59606920448d45a6ead224f904558e3ab9251d071a609b202?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/51e53199212db3f59606920448d45a6ead224f904558e3ab9251d071a609b202?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/51e53199212db3f59606920448d45a6ead224f904558e3ab9251d071a609b202?s=96&d=mm&r=g","caption":"admin"},"url":"https:\/\/www.bodhost.com\/kb\/author\/admin\/"}]}},"_links":{"self":[{"href":"https:\/\/www.bodhost.com\/kb\/wp-json\/wp\/v2\/posts\/5184","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.bodhost.com\/kb\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.bodhost.com\/kb\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.bodhost.com\/kb\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.bodhost.com\/kb\/wp-json\/wp\/v2\/comments?post=5184"}],"version-history":[{"count":45,"href":"https:\/\/www.bodhost.com\/kb\/wp-json\/wp\/v2\/posts\/5184\/revisions"}],"predecessor-version":[{"id":12149,"href":"https:\/\/www.bodhost.com\/kb\/wp-json\/wp\/v2\/posts\/5184\/revisions\/12149"}],"wp:attachment":[{"href":"https:\/\/www.bodhost.com\/kb\/wp-json\/wp\/v2\/media?parent=5184"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.bodhost.com\/kb\/wp-json\/wp\/v2\/categories?post=5184"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.bodhost.com\/kb\/wp-json\/wp\/v2\/tags?post=5184"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}