{"id":2400,"date":"2025-07-15T12:30:00","date_gmt":"2025-07-15T17:30:00","guid":{"rendered":"https:\/\/www.linuxcloudvps.com\/blog\/?p=2400"},"modified":"2025-10-27T02:56:37","modified_gmt":"2025-10-27T07:56:37","slug":"how-to-install-owncloud-on-debian-13","status":"publish","type":"post","link":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-owncloud-on-debian-13\/","title":{"rendered":"How to Install ownCloud on Debian 13"},"content":{"rendered":"\n<p>OwnCloud is one of the free and open-source file sharing software like Dropbox, providing good security, has a good way for application users to share and access data that is smoothly integrated with devices whose purpose is to secure, track, and report data usage. OwnCloud was initially developed in 2010, built using open-source technology, ownCloud provides a variety of features such as file sync, team collaboration, calendar, contacts, and more. With ownCloud, we can have full control over our own data, without having to rely on third-party service providers. In this article, we will show you how to install ownCloud on Debian 13.<\/p>\n\n\n\n<!--more-->\n\n\n\n<h3 class=\"wp-block-heading\">Conventions<\/h3>\n\n\n\n<pre class=\"wp-block-preformatted\"># \u2013 given commands should be executed with root privileges either directly as a root user or by use of sudo command<br>$ \u2013 given commands should be executed as a regular user<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Step 1. Install and Configure Apache<\/h2>\n\n\n\n<p>In this step, we are going to install Apache as the web server. Let&#8217;s proceed with the installation of Apache now.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"># apt install apache2<\/pre>\n\n\n\n<p>On Debian machines, Apache will start automatically after installation. To confirm this, you can execute the following command.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"># systemctl status apache2<\/pre>\n\n\n\n<p>You will see the status displayed, indicating that Apache is operational.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">\u25cf apache2.service - The Apache HTTP Server<br>     Loaded: loaded (\/usr\/lib\/systemd\/system\/apache2.service; enabled; preset: enabled)<br>     Active: active (running) since Fri 2025-05-16 21:09:35 CDT; 1min ago<br> Invocation: 37abbd144d524594a2c0cc41465de9ac<br>       Docs: https:\/\/httpd.apache.org\/docs\/2.4\/<br>    Process: 17093 ExecStart=\/usr\/sbin\/apachectl start (code=exited, status=0\/SUCCESS)<br>   Main PID: 17097 (apache2)<br>      Tasks: 7 (limit: 4644)<br>     Memory: 13.7M (peak: 14M)<br>        CPU: 230ms<br>     CGroup: \/system.slice\/apache2.service<br>             \u251c\u250017097 \/usr\/sbin\/apache2 -k start<br>             \u251c\u250017099 \/usr\/sbin\/apache2 -k start<br>             \u251c\u250017100 \/usr\/sbin\/apache2 -k start<br>             \u251c\u250017101 \/usr\/sbin\/apache2 -k start<br>             \u251c\u250017102 \/usr\/sbin\/apache2 -k start<br>             \u251c\u250017103 \/usr\/sbin\/apache2 -k start<br>             \u2514\u250017104 \/usr\/sbin\/apache2 -k start<br><br>May 16 21:09:35 debian13.linuxcloudvps.com systemd[1]: Starting apache2.service - The Apache HTTP Server...<br>May 16 21:09:35 debian13.linuxcloudvps.com apachectl[17096]: AH00558: apache2: Could not reliably determine the server's fully qualified domain name, using debian13.linuxcloudvps.com. Set the 'S&gt;<br>May 16 21:09:35 debian13.linuxcloudvps.com systemd[1]: Started apache2.service - The Apache HTTP Server.<\/pre>\n\n\n\n<p>OwnCloud requires mod_rewrite and the rewrite module is not enabled by default. Let&#8217;s enable it now.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"># a2enmod rewrite headers unique_id<\/pre>\n\n\n\n<p>After enabling the modules, we need to restart Apache to apply the new configuration.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"># systemctl restart apache2<\/pre>\n\n\n\n<p>Now, let&#8217;s create a directory for our ownCloud installation.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"># mkdir -p \/var\/www\/html\/yourdomain.com\/<\/pre>\n\n\n\n<p>The next step is to create an Apache virtual host.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"># nano \/etc\/apache2\/sites-enabled\/yourdomain.com.conf<\/pre>\n\n\n\n<p>Insert the following lines to the file. Make sure to replace yourdomain.com with your actual domain or subdomain name pointing to your server.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">&lt;VirtualHost *:80&gt;<br><br>ServerAdmin admin@yourdomain.com<br>ServerName yourdomain.com<br>ServerAlias www.yourdomain.com<br>DocumentRoot \/var\/www\/html\/yourdomain.com<br><br>ErrorLog ${APACHE_LOG_DIR}\/yourdomain.com_error.log<br>CustomLog ${APACHE_LOG_DIR}\/yourdomain.com_access.log combined<br><br>&lt;FilesMatch \\.php$&gt;<br>  SetHandler \"proxy:unix:\/var\/run\/php\/php7.4-fpm.sock|fcgi:\/\/localhost\"<br>&lt;\/FilesMatch&gt;\t<br><br>&lt;Directory \/var\/www\/html\/yourdomain.com\/&gt;<br>  Options +FollowSymlinks<br>  AllowOverride All<br>&lt;\/Directory&gt;<br> &lt;IfModule mod_dav.c&gt;<br>  Dav off<br> &lt;\/IfModule&gt;<br><br>&lt;\/VirtualHost&gt;<\/pre>\n\n\n\n<p>Save the file then exit. Do not restart Apache at this point, because we added the PHP configuration to the virtual host and we have not installed PHP 7.4 yet and we will do it in the next step.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Step 2. Install PHP and Its Extensions<\/h2>\n\n\n\n<p>Since Debian 13 ships with PHP 8.4 and ownCloud at the moment does not support PHP 8 and higher, we need to install PHP 7.4. We suggest adding a third-party source, Ond\u0159ej Sur\u00fd&#8217;s PHP source, which offers current PHP packages. Execute the following commands to add the repository<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"># apt install -y apt-transport-https lsb-release ca-certificates wget<br># wget -O \/etc\/apt\/trusted.gpg.d\/php.gpg https:\/\/packages.sury.org\/php\/apt.gpg<br># echo \"deb https:\/\/packages.sury.org\/php\/ $(lsb_release -sc) main\" | sudo tee \/etc\/apt\/sources.list.d\/php.list<\/pre>\n\n\n\n<p>Now, let&#8217;s refresh the package index files on the system<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"># apt update<\/pre>\n\n\n\n<p>Since you have set up the necessary PPA on your system and the package index is updated, let&#8217;s proceed with installing the required PHP version.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"># apt install php7.4-{xml,intl,common,json,curl,fpm,mbstring,mysql,gd,imagick,zip,opcache}<\/pre>\n\n\n\n<p>PHP and its required extensions have been installed. Let&#8217;s enable PHP 7.4 for Apache now.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"># a2enmod proxy_fcgi setenvif<br># a2enconf php7.4-fpm<\/pre>\n\n\n\n<p>To apply the changes, let&#8217;s restart apache<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"># systemctl restart apache2<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Step 3. Install MariaDB Server<\/h2>\n\n\n\n<p>There are several database engine we can use to install ownCloud. OwnCloud supports MySQL server version 8.0+ or equivalent MariaDB server, PostgreSQL, Oracle, and SQLite (not for production). In this step, we are going to install MariaDB server from the default Debian 13 repository. To install MariaDB server, simply invoke this command below:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"># apt install mariadb-server<\/pre>\n\n\n\n<p>MariaDB should be up and running now.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Step 4. Create a Database<\/h2>\n\n\n\n<p>On Debian 13, MariaDB will start automatically upon installation. So, let&#8217;s log in to MySQL shell and create a database for our ownCloud website.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"># mysql<\/pre>\n\n\n\n<p>Once logged in to MySQL shell, we can run the following commands.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">mysql&gt; CREATE DATABASE owncloud;<br>mysql&gt; GRANT ALL on owncloud.* to owncloud@localhost identified by 'm0d1fyth15';<br>mysql&gt; FLUSH PRIVILEGES;<br>mysql&gt; \\q<\/pre>\n\n\n\n<p>At this point, we have created a database called &#8216;owncloud&#8217; with database user &#8216;owncloud&#8217; and the password is &#8216;m0d1fyth15&#8217;. Do not forget to replace m0d1fyth15 with a stronger password. We will use these information to install ownCloud.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Step 5. Download and Install ownCloud<\/h2>\n\n\n\n<p>In this step, we are going to download the latest stable version of ownCloud. To get other versions, you can go to <a href=\"https:\/\/download.owncloud.com\/server\/stable\/\" target=\"_blank\" rel=\"noreferrer noopener\">ownCloud download page<\/a>.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"># cd \/var\/www\/html\/yourdomain.com<br># wget https:\/\/download.owncloud.com\/server\/stable\/owncloud-latest.tar.bz2<br># tar -xf owncloud-latest.tar.bz2 --strip-components 1<\/pre>\n\n\n\n<p>The commands above will download then extract the compressed file in to directory \/var\/www\/html\/yourdomain.com. Now, let&#8217;s give the correct permissions.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"># chown -R www-data: \/var\/www\/html\/yourdomain.com\/<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Step 7. Install ownCloud<\/h2>\n\n\n\n<p>The installation should be done in a web browser. We need to go to http:\/\/yourdomain.com, make sure to replace yourdomain.com with the domain you configured earlier when setting up Apache virtual host.<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><a href=\"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2025\/05\/owncloud-details.jpg\"><img decoding=\"async\" width=\"505\" height=\"1024\" src=\"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2025\/05\/owncloud-details-505x1024.jpg\" alt=\"install owncloud on Debian 13\" class=\"wp-image-2404\" srcset=\"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2025\/05\/owncloud-details-505x1024.jpg 505w, https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2025\/05\/owncloud-details-148x300.jpg 148w, https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2025\/05\/owncloud-details.jpg 678w\" sizes=\"(max-width: 505px) 100vw, 505px\" \/><\/a><\/figure>\n\n\n\n<p>Fill the forms with the administrative user and password you want to create, and also fill the database credentials we created earlier in this post then click on Finish Setup button.<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><a href=\"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2025\/05\/owncloud-login.jpg\"><img decoding=\"async\" width=\"655\" height=\"759\" src=\"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2025\/05\/owncloud-login.jpg\" alt=\"owncloud login\" class=\"wp-image-2405\" srcset=\"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2025\/05\/owncloud-login.jpg 655w, https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2025\/05\/owncloud-login-259x300.jpg 259w\" sizes=\"(max-width: 655px) 100vw, 655px\" \/><\/a><\/figure>\n\n\n\n<p>Login with your administrative account you created in the previous step. Now, you can customize your fresh installed ownCloud website.<\/p>\n\n\n\n<p>That&#8217;s it! You have successfully installed ownCloud on Debian 13.<\/p>\n\n\n\n<p>If you want to host an ownCloud website with high-end hardware at an affordable price, look no further \u2013 our <a href=\"https:\/\/www.linuxcloudvps.com\/cloud-vps.html\" target=\"_blank\" rel=\"noreferrer noopener\">VPS hosting plans<\/a> will let you host any software you want with dedicated resources.<\/p>\n\n\n\n<p>Thanks for reading this tutorial \u2013 please share it with your peers if you found this guide helpful. You can also leave a comment if you liked the post or if you have any suggestions or concerns.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>OwnCloud is one of the free and open-source file sharing software like Dropbox, providing good security, has a good way for application users to share and access data that is smoothly integrated with devices whose purpose is to secure, track, and report data usage. OwnCloud was initially developed in 2010, built using open-source technology, ownCloud &#8230; <a title=\"How to Install ownCloud on Debian 13\" class=\"read-more\" href=\"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-owncloud-on-debian-13\/\" aria-label=\"More on How to Install ownCloud on Debian 13\">Read more<\/a><\/p>\n","protected":false},"author":2,"featured_media":2419,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[271],"tags":[348,168],"class_list":["post-2400","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-debian","tag-debian-13","tag-how-to-install"],"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 on Debian 13 | LinuxCloudVPS Blog<\/title>\n<meta name=\"description\" content=\"Learn how to install ownCloud on Debian 13 or get our expert Linux system administrators to take care of the installation for you.\" \/>\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.linuxcloudvps.com\/blog\/how-to-install-owncloud-on-debian-13\/\" \/>\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 on Debian 13 | LinuxCloudVPS Blog\" \/>\n<meta property=\"og:description\" content=\"Learn how to install ownCloud on Debian 13 or get our expert Linux system administrators to take care of the installation for you.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-owncloud-on-debian-13\/\" \/>\n<meta property=\"og:site_name\" content=\"LinuxCloudVPS Blog\" \/>\n<meta property=\"article:publisher\" content=\"http:\/\/www.facebook.com\/LinuxCloudVPS\" \/>\n<meta property=\"article:published_time\" content=\"2025-07-15T17:30:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-10-27T07:56:37+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2025\/07\/how-to-install-owncloud-on-debian-13.webp\" \/>\n\t<meta property=\"og:image:width\" content=\"742\" \/>\n\t<meta property=\"og:image:height\" content=\"410\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/webp\" \/>\n<meta name=\"author\" content=\"admin\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@LinuxCloudVPS\" \/>\n<meta name=\"twitter:site\" content=\"@LinuxCloudVPS\" \/>\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.linuxcloudvps.com\\\/blog\\\/how-to-install-owncloud-on-debian-13\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-owncloud-on-debian-13\\\/\"},\"author\":{\"name\":\"admin\",\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/#\\\/schema\\\/person\\\/ed907227ee7d151c617e6d0fe74f531a\"},\"headline\":\"How to Install ownCloud on Debian 13\",\"datePublished\":\"2025-07-15T17:30:00+00:00\",\"dateModified\":\"2025-10-27T07:56:37+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-owncloud-on-debian-13\\\/\"},\"wordCount\":756,\"commentCount\":3,\"publisher\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-owncloud-on-debian-13\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/wp-content\\\/uploads\\\/2025\\\/07\\\/how-to-install-owncloud-on-debian-13.webp\",\"keywords\":[\"Debian 13\",\"how to install\"],\"articleSection\":[\"Debian\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-owncloud-on-debian-13\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-owncloud-on-debian-13\\\/\",\"url\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-owncloud-on-debian-13\\\/\",\"name\":\"How to Install ownCloud on Debian 13 | LinuxCloudVPS Blog\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-owncloud-on-debian-13\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-owncloud-on-debian-13\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/wp-content\\\/uploads\\\/2025\\\/07\\\/how-to-install-owncloud-on-debian-13.webp\",\"datePublished\":\"2025-07-15T17:30:00+00:00\",\"dateModified\":\"2025-10-27T07:56:37+00:00\",\"description\":\"Learn how to install ownCloud on Debian 13 or get our expert Linux system administrators to take care of the installation for you.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-owncloud-on-debian-13\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-owncloud-on-debian-13\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-owncloud-on-debian-13\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/wp-content\\\/uploads\\\/2025\\\/07\\\/how-to-install-owncloud-on-debian-13.webp\",\"contentUrl\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/wp-content\\\/uploads\\\/2025\\\/07\\\/how-to-install-owncloud-on-debian-13.webp\",\"width\":742,\"height\":410,\"caption\":\"How to install ownCloud on Debian 13\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-owncloud-on-debian-13\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Install ownCloud on Debian 13\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/\",\"name\":\"LinuxCloudVPS\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/#organization\",\"name\":\"LinuxCloudVPS\",\"url\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/wp-content\\\/uploads\\\/2023\\\/08\\\/logo.png\",\"contentUrl\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/wp-content\\\/uploads\\\/2023\\\/08\\\/logo.png\",\"width\":217,\"height\":25,\"caption\":\"LinuxCloudVPS\"},\"image\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"http:\\\/\\\/www.facebook.com\\\/LinuxCloudVPS\",\"https:\\\/\\\/x.com\\\/LinuxCloudVPS\",\"http:\\\/\\\/www.linkedin.com\\\/company\\\/linuxcloudvps-com\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/#\\\/schema\\\/person\\\/ed907227ee7d151c617e6d0fe74f531a\",\"name\":\"admin\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/?s=96&d=mm&r=g\",\"caption\":\"admin\"},\"sameAs\":[\"http:\\\/\\\/www.linuxcloudvps.com\\\/\"],\"url\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/author\\\/r0s3admin\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Install ownCloud on Debian 13 | LinuxCloudVPS Blog","description":"Learn how to install ownCloud on Debian 13 or get our expert Linux system administrators to take care of the installation for you.","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.linuxcloudvps.com\/blog\/how-to-install-owncloud-on-debian-13\/","og_locale":"en_US","og_type":"article","og_title":"How to Install ownCloud on Debian 13 | LinuxCloudVPS Blog","og_description":"Learn how to install ownCloud on Debian 13 or get our expert Linux system administrators to take care of the installation for you.","og_url":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-owncloud-on-debian-13\/","og_site_name":"LinuxCloudVPS Blog","article_publisher":"http:\/\/www.facebook.com\/LinuxCloudVPS","article_published_time":"2025-07-15T17:30:00+00:00","article_modified_time":"2025-10-27T07:56:37+00:00","og_image":[{"width":742,"height":410,"url":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2025\/07\/how-to-install-owncloud-on-debian-13.webp","type":"image\/webp"}],"author":"admin","twitter_card":"summary_large_image","twitter_creator":"@LinuxCloudVPS","twitter_site":"@LinuxCloudVPS","twitter_misc":{"Written by":"admin","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-owncloud-on-debian-13\/#article","isPartOf":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-owncloud-on-debian-13\/"},"author":{"name":"admin","@id":"https:\/\/www.linuxcloudvps.com\/blog\/#\/schema\/person\/ed907227ee7d151c617e6d0fe74f531a"},"headline":"How to Install ownCloud on Debian 13","datePublished":"2025-07-15T17:30:00+00:00","dateModified":"2025-10-27T07:56:37+00:00","mainEntityOfPage":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-owncloud-on-debian-13\/"},"wordCount":756,"commentCount":3,"publisher":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/#organization"},"image":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-owncloud-on-debian-13\/#primaryimage"},"thumbnailUrl":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2025\/07\/how-to-install-owncloud-on-debian-13.webp","keywords":["Debian 13","how to install"],"articleSection":["Debian"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-owncloud-on-debian-13\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-owncloud-on-debian-13\/","url":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-owncloud-on-debian-13\/","name":"How to Install ownCloud on Debian 13 | LinuxCloudVPS Blog","isPartOf":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-owncloud-on-debian-13\/#primaryimage"},"image":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-owncloud-on-debian-13\/#primaryimage"},"thumbnailUrl":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2025\/07\/how-to-install-owncloud-on-debian-13.webp","datePublished":"2025-07-15T17:30:00+00:00","dateModified":"2025-10-27T07:56:37+00:00","description":"Learn how to install ownCloud on Debian 13 or get our expert Linux system administrators to take care of the installation for you.","breadcrumb":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-owncloud-on-debian-13\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-owncloud-on-debian-13\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-owncloud-on-debian-13\/#primaryimage","url":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2025\/07\/how-to-install-owncloud-on-debian-13.webp","contentUrl":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2025\/07\/how-to-install-owncloud-on-debian-13.webp","width":742,"height":410,"caption":"How to install ownCloud on Debian 13"},{"@type":"BreadcrumbList","@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-owncloud-on-debian-13\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.linuxcloudvps.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to Install ownCloud on Debian 13"}]},{"@type":"WebSite","@id":"https:\/\/www.linuxcloudvps.com\/blog\/#website","url":"https:\/\/www.linuxcloudvps.com\/blog\/","name":"LinuxCloudVPS","description":"","publisher":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.linuxcloudvps.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.linuxcloudvps.com\/blog\/#organization","name":"LinuxCloudVPS","url":"https:\/\/www.linuxcloudvps.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.linuxcloudvps.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2023\/08\/logo.png","contentUrl":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2023\/08\/logo.png","width":217,"height":25,"caption":"LinuxCloudVPS"},"image":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["http:\/\/www.facebook.com\/LinuxCloudVPS","https:\/\/x.com\/LinuxCloudVPS","http:\/\/www.linkedin.com\/company\/linuxcloudvps-com"]},{"@type":"Person","@id":"https:\/\/www.linuxcloudvps.com\/blog\/#\/schema\/person\/ed907227ee7d151c617e6d0fe74f531a","name":"admin","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/?s=96&d=mm&r=g","caption":"admin"},"sameAs":["http:\/\/www.linuxcloudvps.com\/"],"url":"https:\/\/www.linuxcloudvps.com\/blog\/author\/r0s3admin\/"}]}},"_links":{"self":[{"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/posts\/2400","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/comments?post=2400"}],"version-history":[{"count":5,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/posts\/2400\/revisions"}],"predecessor-version":[{"id":2489,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/posts\/2400\/revisions\/2489"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/media\/2419"}],"wp:attachment":[{"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/media?parent=2400"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/categories?post=2400"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/tags?post=2400"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}