{"id":62,"date":"2016-12-21T12:24:59","date_gmt":"2016-12-21T10:24:59","guid":{"rendered":"http:\/\/devblog.viking-studios.net\/en\/?p=62"},"modified":"2017-02-14T13:51:51","modified_gmt":"2017-02-14T11:51:51","slug":"your-own-cloud-nextcloud-update-on-a-synology-diskstation-and-dsm-6","status":"publish","type":"post","link":"https:\/\/blog.viking-studios.net\/en\/your-own-cloud-nextcloud-update-on-a-synology-diskstation-and-dsm-6\/","title":{"rendered":"Your own cloud: Nextcloud update  on a Synology DiskStation and DSM 6"},"content":{"rendered":"<p>In the\u00a0<a href=\"http:\/\/devblog.viking-studios.net\/en\/your-own-cloud-nextcloud-optimization-on-a-synology-diskstation-and-dsm-6\/\">last article<\/a>\u00a0I&#8217;ve explained, how to fix common errors and security issues and how to optimize Nextcloud in a productive environment. In this article I&#8217;m going to show you how to update Nextcloud, once manually and once with the new updater app.<br \/>\n&nbsp;<\/p>\n<h2>Manual Update<\/h2>\n<p>&nbsp;<\/p>\n<ol>\n<li>First create an backup of your Nextcloud database.<\/li>\n<li>Maintenance mode.\n<ol>\n<li>Open a connection to your DS via putty.<\/li>\n<li>Log in as an admin.<\/li>\n<li>Get\u00a0root access typing <em>sudo -i<\/em>\u00a0and your password.<\/li>\n<li>Go to your Nextcloud directory in \/volumeX\/web.<\/li>\n<li>Activate the maintenance mode typing:\n<pre class=\"theme:obsidian lang:sh decode:true\">sudo -u http php56 occ maintenance:mode --on<\/pre>\n<p>On a DiskStation you have to use\u00a0http as user\u00a0and type php56 to be able to use\u00a0occ commands. Alternatively you can enable the maintenance mode in\u00a0config.php directly.<\/li>\n<\/ol>\n<\/li>\n<li>Stop the\u00a0web server (stop the WebStation at the package center).<\/li>\n<li>Rename your Nextcloud folder in \/volumeX\/web (e.g. Nextcloud-Old).<\/li>\n<li>Download the newest\u00a0Nextcloud release <a href=\"https:\/\/nextcloud.com\/install\/#instructions-server\">here<\/a>.<\/li>\n<li>Upload the archive to your\u00a0DiskStation and extrackt it to\u00a0\/volumeX\/web.\n<ul>\n<li>Rename the folder if you used a different name four it before.<\/li>\n<\/ul>\n<\/li>\n<li>Copy the config.php from the old directory to the new one.<\/li>\n<li>If your\u00a0data directory is located in you Nextcloud directory, your also have to move it. If it is located outside of \/web, you have to do nothing. The path is written down in the config.php file.<\/li>\n<li>If you have installed\u00a03rd party apps, look into\u00a0\/apps if they are located there. If not, you also have to copy them. Attention: Only do this for apps you have actually installed. Skip apps that you don&#8217;t know and can&#8217;t find in the new \/apps folder. Sometimes apps get discarded in ne Nextcloud versions, then you won&#8217;t find them in \/apps anymore.<\/li>\n<\/ol>\n<h4>Modify permissions<\/h4>\n<ol>\n<li>Create a script on your DiskStaton containing following lines:\n<pre class=\"theme:obsidian lang:sh decode:true\">#!\/bin\/bash\r\n\r\nchown -R http:http \/volume1\/web\/Nextcloud\/\r\n\r\nchmod -R 777 \/volume1\/web\/Nextcloud\/<\/pre>\n<p>If you used\u00a0<a href=\"http:\/\/devblog.viking-studios.net\/en\/your-own-cloud-nextcloud-installation-on-a-synology-diskstation-and-dsm-6\/\">this article<\/a>\u00a0to install\u00a0Nextcloud and you already have this script you could skip this step.\u00a0You could also modify the permissions via\u00a0putty or WinSCP. I\u00a0recommend the scripts because you have to tweak the permissions at every update. You save some time by just executing the scripts and not type every line into putty.<\/li>\n<li>Execute these lines via putty or execute the script typing\u00a0<em>sh \/volumeX\/path\/to\/script.sh<br \/>\n<\/em><\/p>\n<p><figure id=\"attachment_277\" aria-describedby=\"caption-attachment-277\" style=\"width: 300px\" class=\"wp-caption aligncenter\"><a href=\"http:\/\/devblog.viking-studios.net\/wp-content\/uploads\/2016\/12\/soften.png\"><img loading=\"lazy\" decoding=\"async\" class=\"wp-image-277 size-medium\" src=\"http:\/\/devblog.viking-studios.net\/wp-content\/uploads\/2016\/12\/soften-300x235.png\" alt=\"Permissions before an update\" width=\"300\" height=\"235\" \/><\/a><figcaption id=\"caption-attachment-277\" class=\"wp-caption-text\">Permissions before an update<\/figcaption><\/figure><\/li>\n<\/ol>\n<h4>Execute the update<\/h4>\n<ol>\n<li>Restart the web server.<\/li>\n<li>In putty, go to your Nextcloud folder.<\/li>\n<li>Deactivate the maintenance mode again. It seems that the update command enables the maintenance mode itself. If the mode is already active, the update can&#8217;t be executed:\n<pre class=\"theme:obsidian lang:sh decode:true\">sudo -u http php56 occ maintenance:mode --off<\/pre>\n<\/li>\n<li id=\"step4\">Exectue the update command:\n<pre class=\"theme:obsidian lang:sh decode:true\">sudo -u http php56 occ upgrade<\/pre>\n<\/li>\n<li>Based on the size of your installation, this will take some time. The command line writes down each single step and also informs you about the end of the update process.\n<p><figure id=\"attachment_278\" aria-describedby=\"caption-attachment-278\" style=\"width: 300px\" class=\"wp-caption aligncenter\"><a href=\"http:\/\/devblog.viking-studios.net\/wp-content\/uploads\/2016\/12\/out2.png\"><img loading=\"lazy\" decoding=\"async\" class=\"wp-image-278 size-medium\" src=\"http:\/\/devblog.viking-studios.net\/wp-content\/uploads\/2016\/12\/out2-300x272.png\" alt=\"Update process in the command line\" width=\"300\" height=\"272\" \/><\/a><figcaption id=\"caption-attachment-278\" class=\"wp-caption-text\">Update process in the command line<\/figcaption><\/figure><\/li>\n<li>Now you have to deactivate the maintenance mode again:\n<pre class=\"theme:obsidian lang:sh decode:true\">sudo -u http php56 occ maintenance:mode --off<\/pre>\n<\/li>\n<li>\u00a0Your Nextcloud is now up-to-date, continue with the steps from\u00a0<a href=\"#afterupdate\">after updating NC<\/a>.<\/li>\n<\/ol>\n<p>&nbsp;<\/p>\n<h2>Update using the\u00a0updater app<\/h2>\n<p>&nbsp;<br \/>\n<strong>ATTENTION:<\/strong>\u00a0For a stable and working updater app, you need\u00a0Nextcloud 10.0.1 or higher. Older versions\u00a0and Owncloud still use the old\u00a0Owncloud updater. This app is quite unstable and doesn&#8217;t even deliver newer versions of Owncloud and Nextcloud.<\/p>\n<p>To update your Nextcloud, you have to wait, till the update is delivered via updater. In this case you&#8217;ll get a notification, you can see this notification in your web interface and also on all Nextcloud clients.<\/p>\n<figure id=\"attachment_254\" aria-describedby=\"caption-attachment-254\" style=\"width: 457px\" class=\"wp-caption aligncenter\"><a href=\"http:\/\/devblog.viking-studios.net\/wp-content\/uploads\/2016\/12\/notif.png\"><img loading=\"lazy\" decoding=\"async\" class=\"size-full wp-image-254\" src=\"http:\/\/devblog.viking-studios.net\/wp-content\/uploads\/2016\/12\/notif.png\" alt=\"Update notification\" width=\"457\" height=\"46\" \/><\/a><figcaption id=\"caption-attachment-254\" class=\"wp-caption-text\">Update notification<\/figcaption><\/figure>\n<h4>Modify permissions:<\/h4>\n<p>This is the only Task, the updater won&#8217;t do (on purpose). You have to set less strict permissions so that the updater is able to access the files.\u00a0The best way to do this, is using putty or WinSCP. If you&#8217;ve already read the first article of this series and created the script before, you can skip this step and continue at step 2.<\/p>\n<ol>\n<li>Create somewhere on you DS a scipt\u00a0(text file with the endin .sh), containing following lines:\n<pre class=\"theme:obsidian lang:sh decode:true\">#!\/bin\/bash\r\n\r\nchown -R http:http \/volume1\/web\/Nextcloud\/\r\n\r\nchmod -R 777 \/volume1\/web\/Nextcloud\/<\/pre>\n<\/li>\n<li>Open a connection to your DS via putty.<\/li>\n<li>Log in as an admin.<\/li>\n<li>Get\u00a0root access typing <em>sudo -i<\/em>\u00a0and your password.<\/li>\n<li>Enter these lines or execute the script by entering <em>sh \/volumeX\/Pfad\/zum\/Script.sh<\/em><\/li>\n<\/ol>\n<h4>Execute the update:<\/h4>\n<ol>\n<li>Log into the Nextcloud web interface.<\/li>\n<li>Go to the admin area. There you should see which version you use and which version is available.<\/li>\n<li>Open the updater by clicking the button. The updater again shows the version information.<\/li>\n<\/ol>\n<figure id=\"attachment_255\" aria-describedby=\"caption-attachment-255\" style=\"width: 559px\" class=\"wp-caption aligncenter\"><a href=\"http:\/\/devblog.viking-studios.net\/wp-content\/uploads\/2016\/12\/up1.png\"><img loading=\"lazy\" decoding=\"async\" class=\"wp-image-255 size-full\" src=\"http:\/\/devblog.viking-studios.net\/wp-content\/uploads\/2016\/12\/up1.png\" alt=\"Actual version and updater in the admin area\" width=\"559\" height=\"177\" \/><\/a><figcaption id=\"caption-attachment-255\" class=\"wp-caption-text\">Actual version and updater in the admin area<\/figcaption><\/figure>\n<figure id=\"attachment_257\" aria-describedby=\"caption-attachment-257\" style=\"width: 554px\" class=\"wp-caption aligncenter\"><a href=\"http:\/\/devblog.viking-studios.net\/wp-content\/uploads\/2016\/12\/up2.png\"><img loading=\"lazy\" decoding=\"async\" class=\"wp-image-257 size-full\" src=\"http:\/\/devblog.viking-studios.net\/wp-content\/uploads\/2016\/12\/up2.png\" alt=\"Updater displaying version info\" width=\"554\" height=\"171\" \/><\/a><figcaption id=\"caption-attachment-257\" class=\"wp-caption-text\">Updater displaying version info<\/figcaption><\/figure>\n<p>The updater executes some security checks before the actual update gets performed. One of the checks looks for files or folders that are not part of the Nextcloud installation anymore.\u00a0You have to delete them from the file system manually. After that you could restart the update by clicking the button.<\/p>\n<figure id=\"attachment_258\" aria-describedby=\"caption-attachment-258\" style=\"width: 622px\" class=\"wp-caption aligncenter\"><a href=\"http:\/\/devblog.viking-studios.net\/wp-content\/uploads\/2016\/12\/up3.png\"><img loading=\"lazy\" decoding=\"async\" class=\"wp-image-258 size-full\" src=\"http:\/\/devblog.viking-studios.net\/wp-content\/uploads\/2016\/12\/up3.png\" alt=\"Failed file check\" width=\"622\" height=\"672\" \/><\/a><figcaption id=\"caption-attachment-258\" class=\"wp-caption-text\">Failed file check<\/figcaption><\/figure>\n<p>The next task is the check for permissions. This task fails, if you haven&#8217;t modified the permissions before. The execution of this task will take some time.<\/p>\n<figure id=\"attachment_259\" aria-describedby=\"caption-attachment-259\" style=\"width: 533px\" class=\"wp-caption aligncenter\"><a href=\"http:\/\/devblog.viking-studios.net\/wp-content\/uploads\/2016\/12\/up4.png\"><img loading=\"lazy\" decoding=\"async\" class=\"wp-image-259 size-full\" src=\"http:\/\/devblog.viking-studios.net\/wp-content\/uploads\/2016\/12\/up4.png\" alt=\"Checking file permissions\" width=\"533\" height=\"130\" \/><\/a><figcaption id=\"caption-attachment-259\" class=\"wp-caption-text\">Checking file permissions<\/figcaption><\/figure>\n<p>The updater also creates a backup before it replaces the old installation with the new one.<\/p>\n<h4>Update the database:<\/h4>\n<p>You can do this in 2 different ways. Either you use the web interface or the command line (putty). In cases of large databases you can run into a PHP timeout. In this case you have to use the command line. Keep the maintenance mode active by clicking\u00a0&#8220;Yes&#8221; and continue at &#8220;Execute the update&#8221;\u00a0<a href=\"#step4\">step 4<\/a> of the manual Update Chapter.<\/p>\n<figure id=\"attachment_260\" aria-describedby=\"caption-attachment-260\" style=\"width: 540px\" class=\"wp-caption aligncenter\"><a href=\"http:\/\/devblog.viking-studios.net\/wp-content\/uploads\/2016\/12\/up5.png\"><img loading=\"lazy\" decoding=\"async\" class=\"wp-image-260 size-full\" src=\"http:\/\/devblog.viking-studios.net\/wp-content\/uploads\/2016\/12\/up5.png\" alt=\"Keep maintenance mode or not\" width=\"540\" height=\"633\" \/><\/a><figcaption id=\"caption-attachment-260\" class=\"wp-caption-text\">Keep maintenance mode or not<\/figcaption><\/figure>\n<ol>\n<li>To use the web interface for the update, click\u00a0&#8220;No&#8221;.<\/li>\n<li>A new button appears, click on it to open the web interface.<\/li>\n<li>Now you can start part 2 of the update process, like at the initial installation.<\/li>\n<\/ol>\n<figure id=\"attachment_261\" aria-describedby=\"caption-attachment-261\" style=\"width: 545px\" class=\"wp-caption aligncenter\"><a href=\"http:\/\/devblog.viking-studios.net\/wp-content\/uploads\/2016\/12\/up6.png\"><img loading=\"lazy\" decoding=\"async\" class=\"wp-image-261 size-full\" src=\"http:\/\/devblog.viking-studios.net\/wp-content\/uploads\/2016\/12\/up6.png\" alt=\"The updater has finished\" width=\"545\" height=\"148\" \/><\/a><figcaption id=\"caption-attachment-261\" class=\"wp-caption-text\">The updater has finished<\/figcaption><\/figure>\n<figure id=\"attachment_262\" aria-describedby=\"caption-attachment-262\" style=\"width: 252px\" class=\"wp-caption aligncenter\"><a href=\"http:\/\/devblog.viking-studios.net\/wp-content\/uploads\/2016\/12\/up7.png\"><img loading=\"lazy\" decoding=\"async\" class=\"wp-image-262 size-medium\" src=\"http:\/\/devblog.viking-studios.net\/wp-content\/uploads\/2016\/12\/up7-252x300.png\" alt=\"Continue the update in the web interface\" width=\"252\" height=\"300\" \/><\/a><figcaption id=\"caption-attachment-262\" class=\"wp-caption-text\">Continue the update in the web interface<\/figcaption><\/figure>\n<p>Also this process can take some time. A message indicates the finished task. You also see if an which apps got deactivated.<\/p>\n<figure id=\"attachment_263\" aria-describedby=\"caption-attachment-263\" style=\"width: 300px\" class=\"wp-caption aligncenter\"><a href=\"http:\/\/devblog.viking-studios.net\/wp-content\/uploads\/2016\/12\/up8.png\"><img loading=\"lazy\" decoding=\"async\" class=\"wp-image-263 size-medium\" src=\"http:\/\/devblog.viking-studios.net\/wp-content\/uploads\/2016\/12\/up8-300x257.png\" alt=\"Update running\" width=\"300\" height=\"257\" \/><\/a><figcaption id=\"caption-attachment-263\" class=\"wp-caption-text\">Update running<\/figcaption><\/figure>\n<p><figure id=\"attachment_264\" aria-describedby=\"caption-attachment-264\" style=\"width: 290px\" class=\"wp-caption aligncenter\"><a href=\"http:\/\/devblog.viking-studios.net\/wp-content\/uploads\/2016\/12\/up9.png\"><img loading=\"lazy\" decoding=\"async\" class=\"wp-image-264 size-medium\" src=\"http:\/\/devblog.viking-studios.net\/wp-content\/uploads\/2016\/12\/up9-290x300.png\" alt=\"Update finnished\" width=\"290\" height=\"300\" \/><\/a><figcaption id=\"caption-attachment-264\" class=\"wp-caption-text\">Update finnished<\/figcaption><\/figure><br \/>\n&nbsp;<\/p>\n<h2 id=\"afterupdate\">After updating NC<\/h2>\n<p>&nbsp;<\/p>\n<ol>\n<li>Reload the page and you&#8217;ll see the usual web interface.<\/li>\n<li>Check the version number in the admin area to get sure if the update was successful. You&#8217;ll also see errors and warnings if there are any.<\/li>\n<li>The next step is to activate the deactivated app again.<\/li>\n<li>If you are sure that everything is OK, it&#8217;s time to apply stricter permissions again. If you have already created this script by following the <a href=\"http:\/\/devblog.viking-studios.net\/en\/your-own-cloud-nextcloud-optimization-on-a-synology-diskstation-and-dsm-6\/\">article about optimization<\/a>, you could skip this step. Otherwise create a new script containing the following lines:\n<pre class=\"theme:obsidian lang:sh decode:true\">#!\/bin\/bash\r\nncpath='\/volume1\/web\/nextcloud'\r\nhtuser='http'\r\nhtgroup='http'\r\nrootuser='root'\r\n\r\nprintf \"chmod Files and Directories\\n\"\r\nfind ${ncpath}\/ -type f -print0 | xargs -0 chmod 0640\r\nfind ${ncpath}\/ -type d -print0 | xargs -0 chmod 0750\r\nfind \/volume1\/ncdata\/ -type f -print0 | xargs -0 chmod 0640\r\nfind \/volume1\/ncdata\/ -type d -print0 | xargs -0 chmod 0750\r\n\r\nprintf \"chown Directories\\n\"\r\nchown -R ${rootuser}:${htgroup} ${ncpath}\/\r\nchown -R ${htuser}:${htgroup} ${ncpath}\/apps\/\r\nchown -R ${htuser}:${htgroup} ${ncpath}\/config\/\r\nchown -R ${htuser}:${htgroup} ${ncpath}\/themes\/\r\nchown -R ${htuser}:${htgroup} ${ncpath}\/updater\/\r\n\r\nchmod +x ${ncpath}\/occ\r\n\r\nprintf \"chmod\/chown .htaccess\\n\"\r\nif [ -f ${ncpath}\/.htaccess ]\r\nthen\r\nchmod 0644 ${ncpath}\/.htaccess\r\nchown ${htuser}:${htgroup} ${ncpath}\/.htaccess\r\nfi\r\n\r\nchown ${htuser}:${htgroup} ${ncpath}\/.user.ini<\/pre>\n<\/li>\n<li>Execute the script by entering\u00a0<em>sh \/volumeX\/Pfad\/zum\/Script.sh<\/em>\u00a0in putty.\n<p><figure id=\"attachment_279\" aria-describedby=\"caption-attachment-279\" style=\"width: 300px\" class=\"wp-caption aligncenter\"><a href=\"http:\/\/devblog.viking-studios.net\/wp-content\/uploads\/2016\/12\/harden.png\"><img loading=\"lazy\" decoding=\"async\" class=\"wp-image-279 size-medium\" src=\"http:\/\/devblog.viking-studios.net\/wp-content\/uploads\/2016\/12\/harden-300x243.png\" alt=\"Fixed permissions\" width=\"300\" height=\"243\" \/><\/a><figcaption id=\"caption-attachment-279\" class=\"wp-caption-text\">Fixed permissions<\/figcaption><\/figure><\/li>\n<\/ol>\n<p>That&#8217;s it, your Nextcloud is up-to date and ready for use again. I really recommend to create those two scripts. You&#8217;ll save some time and don&#8217;t have to look up for the correct permissions and apply them line by line in putty or set them in WinSCP, every time you want to update NC.<\/p>\n<p>With the 3 articles about\u00a0<a href=\"http:\/\/devblog.viking-studios.net\/en\/your-own-cloud-nextcloud-installation-on-a-synology-diskstation-and-dsm-6\/\">installation<\/a>, <a href=\"http:\/\/devblog.viking-studios.net\/en\/your-own-cloud-nextcloud-optimization-on-a-synology-diskstation-and-dsm-6\/\">optimization<\/a>\u00a0and\u00a0updating of Nextcloud,\u00a0you now have all the tools you need for setting up and maintaining Nextcloud on your\u00a0Diskstation. But this is not the end of this article series, there are lots of things you can do with Nextcloud on you DiskStaion. I&#8217;ll continue after a short winter break.<\/p>\n<p>&nbsp;<\/p>\n<h3>Your own Cloud: Nextcloud on a Synology DiskStation<\/h3>\n<ul>\n<li><a href=\"http:\/\/devblog.viking-studios.net\/en\/your-own-cloud-nextcloud-installation-on-a-synology-diskstation-and-dsm-6\/\">Your own Cloud: Nextcloud installation on a Synology DiskStation and DSM 6<\/a><\/li>\n<li><a href=\"http:\/\/devblog.viking-studios.net\/en\/your-own-cloud-nextcloud-optimization-on-a-synology-diskstation-and-dsm-6\/\">Your own Cloud: Nextcloud optimization on a Synology DiskStation and DSM 6<\/a><\/li>\n<li><a href=\"http:\/\/devblog.viking-studios.net\/en\/your-own-cloud-nextcloud-update-on-a-synology-diskstation-and-dsm-6\/\">Your own Cloud: Nextcloud update on a Synology DiskStation and DSM 6<\/a><\/li>\n<\/ul>\n<div class=\"shariff shariff-align-flex-start shariff-widget-align-flex-start\" style=\"display:none\" data-services=\"facebook%7Creddit%7Ctumblr%7Cpinterest%7Cvk\" data-url=\"https%3A%2F%2Fblog.viking-studios.net%2Fen%2Fyour-own-cloud-nextcloud-update-on-a-synology-diskstation-and-dsm-6%2F\" data-timestamp=\"1487080311\" data-hidezero=\"1\" data-backendurl=\"https:\/\/blog.viking-studios.net\/en\/wp-json\/shariff\/v1\/share_counts?\"><div class=\"ShariffHeadline\"><h3 class=\"shariff_headline\">Share the knowledge!<\/h3><\/div><ul class=\"shariff-buttons theme-round orientation-horizontal buttonsize-medium\"><li class=\"shariff-button facebook shariff-nocustomcolor\" style=\"background-color:#4273c8\"><a href=\"https:\/\/www.facebook.com\/sharer\/sharer.php?u=https%3A%2F%2Fblog.viking-studios.net%2Fen%2Fyour-own-cloud-nextcloud-update-on-a-synology-diskstation-and-dsm-6%2F\" title=\"Share on Facebook\" aria-label=\"Share on Facebook\" role=\"button\" rel=\"nofollow\" class=\"shariff-link\" style=\"; background-color:#3b5998; color:#fff\" target=\"_blank\"><span class=\"shariff-icon\" style=\"\"><svg width=\"32px\" height=\"20px\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 18 32\"><path fill=\"#3b5998\" d=\"M17.1 0.2v4.7h-2.8q-1.5 0-2.1 0.6t-0.5 1.9v3.4h5.2l-0.7 5.3h-4.5v13.6h-5.5v-13.6h-4.5v-5.3h4.5v-3.9q0-3.3 1.9-5.2t5-1.8q2.6 0 4.1 0.2z\"\/><\/svg><\/span><span data-service=\"facebook\" style=\"color:#3b5998\" class=\"shariff-count shariff-hidezero\"><\/span>&nbsp;<\/a><\/li><li class=\"shariff-button twitter shariff-nocustomcolor\" style=\"background-color:#595959\"><a href=\"https:\/\/twitter.com\/share?url=https%3A%2F%2Fblog.viking-studios.net%2Fen%2Fyour-own-cloud-nextcloud-update-on-a-synology-diskstation-and-dsm-6%2F&text=Your%20own%20cloud%3A%20Nextcloud%20update%20%20on%20a%20Synology%20DiskStation%20and%20DSM%206\" title=\"Share on X\" aria-label=\"Share on X\" role=\"button\" rel=\"noopener nofollow\" class=\"shariff-link\" style=\"; background-color:#000; color:#fff\" target=\"_blank\"><span class=\"shariff-icon\" style=\"\"><svg width=\"32px\" height=\"20px\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 24 24\"><path fill=\"#000\" d=\"M14.258 10.152L23.176 0h-2.113l-7.747 8.813L7.133 0H0l9.352 13.328L0 23.973h2.113l8.176-9.309 6.531 9.309h7.133zm-2.895 3.293l-.949-1.328L2.875 1.56h3.246l6.086 8.523.945 1.328 7.91 11.078h-3.246zm0 0\"\/><\/svg><\/span><\/a><\/li><li class=\"shariff-button reddit shariff-nocustomcolor\" style=\"background-color:#ff5700\"><a href=\"https:\/\/www.reddit.com\/submit?url=https%3A%2F%2Fblog.viking-studios.net%2Fen%2Fyour-own-cloud-nextcloud-update-on-a-synology-diskstation-and-dsm-6%2F\" title=\"Share on Reddit\" aria-label=\"Share on Reddit\" role=\"button\" rel=\"noopener nofollow\" class=\"shariff-link\" style=\"; background-color:#ff4500; color:#fff\" target=\"_blank\"><span class=\"shariff-icon\" style=\"\"><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 512 512\"><path fill=\"#ff4500\" d=\"M440.3 203.5c-15 0-28.2 6.2-37.9 15.9-35.7-24.7-83.8-40.6-137.1-42.3L293 52.3l88.2 19.8c0 21.6 17.6 39.2 39.2 39.2 22 0 39.7-18.1 39.7-39.7s-17.6-39.7-39.7-39.7c-15.4 0-28.7 9.3-35.3 22l-97.4-21.6c-4.9-1.3-9.7 2.2-11 7.1L246.3 177c-52.9 2.2-100.5 18.1-136.3 42.8-9.7-10.1-23.4-16.3-38.4-16.3-55.6 0-73.8 74.6-22.9 100.1-1.8 7.9-2.6 16.3-2.6 24.7 0 83.8 94.4 151.7 210.3 151.7 116.4 0 210.8-67.9 210.8-151.7 0-8.4-.9-17.2-3.1-25.1 49.9-25.6 31.5-99.7-23.8-99.7zM129.4 308.9c0-22 17.6-39.7 39.7-39.7 21.6 0 39.2 17.6 39.2 39.7 0 21.6-17.6 39.2-39.2 39.2-22 .1-39.7-17.6-39.7-39.2zm214.3 93.5c-36.4 36.4-139.1 36.4-175.5 0-4-3.5-4-9.7 0-13.7 3.5-3.5 9.7-3.5 13.2 0 27.8 28.5 120 29 149 0 3.5-3.5 9.7-3.5 13.2 0 4.1 4 4.1 10.2.1 13.7zm-.8-54.2c-21.6 0-39.2-17.6-39.2-39.2 0-22 17.6-39.7 39.2-39.7 22 0 39.7 17.6 39.7 39.7-.1 21.5-17.7 39.2-39.7 39.2z\"\/><\/svg><\/span><span data-service=\"reddit\" style=\"color:#ff4500\" class=\"shariff-count shariff-hidezero\"><\/span>&nbsp;<\/a><\/li><li class=\"shariff-button telegram shariff-nocustomcolor\" style=\"background-color:#4084A6\"><a href=\"https:\/\/telegram.me\/share\/url?url=https%3A%2F%2Fblog.viking-studios.net%2Fen%2Fyour-own-cloud-nextcloud-update-on-a-synology-diskstation-and-dsm-6%2F&text=Your%20own%20cloud%3A%20Nextcloud%20update%20%20on%20a%20Synology%20DiskStation%20and%20DSM%206\" title=\"Share on Telegram\" aria-label=\"Share on Telegram\" role=\"button\" rel=\"noopener nofollow\" class=\"shariff-link\" style=\"; background-color:#0088cc; color:#fff\" target=\"_blank\"><span class=\"shariff-icon\" style=\"\"><svg width=\"32px\" height=\"20px\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 32 32\"><path fill=\"#0088cc\" d=\"M30.8 6.5l-4.5 21.4c-.3 1.5-1.2 1.9-2.5 1.2L16.9 24l-3.3 3.2c-.4.4-.7.7-1.4.7l.5-7L25.5 9.2c.6-.5-.1-.8-.9-.3l-15.8 10L2 16.7c-1.5-.5-1.5-1.5.3-2.2L28.9 4.3c1.3-.5 2.3.3 1.9 2.2z\"\/><\/svg><\/span><\/a><\/li><li class=\"shariff-button whatsapp shariff-nocustomcolor\" style=\"background-color:#5cbe4a\"><a href=\"https:\/\/api.whatsapp.com\/send?text=https%3A%2F%2Fblog.viking-studios.net%2Fen%2Fyour-own-cloud-nextcloud-update-on-a-synology-diskstation-and-dsm-6%2F%20Your%20own%20cloud%3A%20Nextcloud%20update%20%20on%20a%20Synology%20DiskStation%20and%20DSM%206\" title=\"Share on Whatsapp\" aria-label=\"Share on Whatsapp\" role=\"button\" rel=\"noopener nofollow\" class=\"shariff-link\" style=\"; background-color:#34af23; color:#fff\" target=\"_blank\"><span class=\"shariff-icon\" style=\"\"><svg width=\"32px\" height=\"20px\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 32 32\"><path fill=\"#34af23\" d=\"M17.6 17.4q0.2 0 1.7 0.8t1.6 0.9q0 0.1 0 0.3 0 0.6-0.3 1.4-0.3 0.7-1.3 1.2t-1.8 0.5q-1 0-3.4-1.1-1.7-0.8-3-2.1t-2.6-3.3q-1.3-1.9-1.3-3.5v-0.1q0.1-1.6 1.3-2.8 0.4-0.4 0.9-0.4 0.1 0 0.3 0t0.3 0q0.3 0 0.5 0.1t0.3 0.5q0.1 0.4 0.6 1.6t0.4 1.3q0 0.4-0.6 1t-0.6 0.8q0 0.1 0.1 0.3 0.6 1.3 1.8 2.4 1 0.9 2.7 1.8 0.2 0.1 0.4 0.1 0.3 0 1-0.9t0.9-0.9zM14 26.9q2.3 0 4.3-0.9t3.6-2.4 2.4-3.6 0.9-4.3-0.9-4.3-2.4-3.6-3.6-2.4-4.3-0.9-4.3 0.9-3.6 2.4-2.4 3.6-0.9 4.3q0 3.6 2.1 6.6l-1.4 4.2 4.3-1.4q2.8 1.9 6.2 1.9zM14 2.2q2.7 0 5.2 1.1t4.3 2.9 2.9 4.3 1.1 5.2-1.1 5.2-2.9 4.3-4.3 2.9-5.2 1.1q-3.5 0-6.5-1.7l-7.4 2.4 2.4-7.2q-1.9-3.2-1.9-6.9 0-2.7 1.1-5.2t2.9-4.3 4.3-2.9 5.2-1.1z\"\/><\/svg><\/span><\/a><\/li><li class=\"shariff-button mailto shariff-nocustomcolor\" style=\"background-color:#a8a8a8\"><a href=\"mailto:?body=https%3A%2F%2Fblog.viking-studios.net%2Fen%2Fyour-own-cloud-nextcloud-update-on-a-synology-diskstation-and-dsm-6%2F&subject=Your%20own%20cloud%3A%20Nextcloud%20update%20%20on%20a%20Synology%20DiskStation%20and%20DSM%206\" title=\"Send by email\" aria-label=\"Send by email\" role=\"button\" rel=\"noopener nofollow\" class=\"shariff-link\" style=\"; background-color:#999; color:#fff\"><span class=\"shariff-icon\" style=\"\"><svg width=\"32px\" height=\"20px\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 32 32\"><path fill=\"#999\" d=\"M32 12.7v14.2q0 1.2-0.8 2t-2 0.9h-26.3q-1.2 0-2-0.9t-0.8-2v-14.2q0.8 0.9 1.8 1.6 6.5 4.4 8.9 6.1 1 0.8 1.6 1.2t1.7 0.9 2 0.4h0.1q0.9 0 2-0.4t1.7-0.9 1.6-1.2q3-2.2 8.9-6.1 1-0.7 1.8-1.6zM32 7.4q0 1.4-0.9 2.7t-2.2 2.2q-6.7 4.7-8.4 5.8-0.2 0.1-0.7 0.5t-1 0.7-0.9 0.6-1.1 0.5-0.9 0.2h-0.1q-0.4 0-0.9-0.2t-1.1-0.5-0.9-0.6-1-0.7-0.7-0.5q-1.6-1.1-4.7-3.2t-3.6-2.6q-1.1-0.7-2.1-2t-1-2.5q0-1.4 0.7-2.3t2.1-0.9h26.3q1.2 0 2 0.8t0.9 2z\"\/><\/svg><\/span><\/a><\/li><li class=\"shariff-button tumblr shariff-nocustomcolor\" style=\"background-color:#529ecc\"><a href=\"https:\/\/www.tumblr.com\/widgets\/share\/tool?posttype=link&canonicalUrl=https%3A%2F%2Fblog.viking-studios.net%2Fen%2Fyour-own-cloud-nextcloud-update-on-a-synology-diskstation-and-dsm-6%2F&tags=blog.viking-studios.net\" title=\"Share on tumblr\" aria-label=\"Share on tumblr\" role=\"button\" rel=\"noopener nofollow\" class=\"shariff-link\" style=\"; background-color:#36465d; color:#fff\" target=\"_blank\"><span class=\"shariff-icon\" style=\"\"><svg width=\"32px\" height=\"20px\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 32 32\"><path fill=\"#36465d\" d=\"M18 14l0 7.3c0 1.9 0 2.9 0.2 3.5 0.2 0.5 0.7 1.1 1.2 1.4 0.7 0.4 1.5 0.6 2.4 0.6 1.6 0 2.6-0.2 4.2-1.3v4.8c-1.4 0.6-2.6 1-3.7 1.3-1.1 0.3-2.3 0.4-3.6 0.4-1.5 0-2.3-0.2-3.4-0.6-1.1-0.4-2.1-0.9-2.9-1.6-0.8-0.7-1.3-1.4-1.7-2.2s-0.5-1.9-0.5-3.4v-11.2h-4.3v-4.5c1.3-0.4 2.7-1 3.6-1.8 0.9-0.8 1.6-1.7 2.2-2.7 0.5-1.1 0.9-2.4 1.1-4.1h5.2l0 8h8v6h-8z\"\/><\/svg><\/span><span data-service=\"tumblr\" style=\"color:#36465d\" class=\"shariff-count shariff-hidezero\"><\/span>&nbsp;<\/a><\/li><li class=\"shariff-button pinterest shariff-nocustomcolor\" style=\"background-color:#e70f18\"><a href=\"https:\/\/www.pinterest.com\/pin\/create\/link\/?url=https%3A%2F%2Fblog.viking-studios.net%2Fen%2Fyour-own-cloud-nextcloud-update-on-a-synology-diskstation-and-dsm-6%2F&media=https%3A%2F%2Fblog.viking-studios.net%2Fen%2Fwp-content%2Fuploads%2F2016%2F12%2Fsyno_next.jpg&description=Your%20own%20cloud%3A%20Nextcloud%20update%20%20on%20a%20Synology%20DiskStation%20and%20DSM%206\" title=\"Pin it on Pinterest\" aria-label=\"Pin it on Pinterest\" role=\"button\" rel=\"noopener nofollow\" class=\"shariff-link\" style=\"; background-color:#cb2027; color:#fff\" target=\"_blank\"><span class=\"shariff-icon\" style=\"\"><svg width=\"32px\" height=\"20px\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 27 32\"><path fill=\"#cb2027\" d=\"M27.4 16q0 3.7-1.8 6.9t-5 5-6.9 1.9q-2 0-3.9-0.6 1.1-1.7 1.4-2.9 0.2-0.6 1-3.8 0.4 0.7 1.3 1.2t2 0.5q2.1 0 3.8-1.2t2.7-3.4 0.9-4.8q0-2-1.1-3.8t-3.1-2.9-4.5-1.2q-1.9 0-3.5 0.5t-2.8 1.4-2 2-1.2 2.3-0.4 2.4q0 1.9 0.7 3.3t2.1 2q0.5 0.2 0.7-0.4 0-0.1 0.1-0.5t0.2-0.5q0.1-0.4-0.2-0.8-0.9-1.1-0.9-2.7 0-2.7 1.9-4.6t4.9-2q2.7 0 4.2 1.5t1.5 3.8q0 3-1.2 5.2t-3.1 2.1q-1.1 0-1.7-0.8t-0.4-1.9q0.1-0.6 0.5-1.7t0.5-1.8 0.2-1.4q0-0.9-0.5-1.5t-1.4-0.6q-1.1 0-1.9 1t-0.8 2.6q0 1.3 0.4 2.2l-1.8 7.5q-0.3 1.2-0.2 3.2-3.7-1.6-6-5t-2.3-7.6q0-3.7 1.9-6.9t5-5 6.9-1.9 6.9 1.9 5 5 1.8 6.9z\"\/><\/svg><\/span><span data-service=\"pinterest\" style=\"color:#cb2027\" class=\"shariff-count shariff-hidezero\"><\/span>&nbsp;<\/a><\/li><li class=\"shariff-button rss shariff-nocustomcolor\" style=\"background-color:#ff8c00\"><a href=\"https:\/\/blog.viking-studios.net\/en\/feed\/rss\/\" title=\"RSS feed\" aria-label=\"RSS feed\" role=\"button\" class=\"shariff-link\" style=\"; background-color:#fe9312; color:#fff\" target=\"_blank\"><span class=\"shariff-icon\" style=\"\"><svg width=\"32px\" height=\"20px\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 32 32\"><path fill=\"#fe9312\" d=\"M4.3 23.5c-2.3 0-4.3 1.9-4.3 4.3 0 2.3 1.9 4.2 4.3 4.2 2.4 0 4.3-1.9 4.3-4.2 0-2.3-1.9-4.3-4.3-4.3zM0 10.9v6.1c4 0 7.7 1.6 10.6 4.4 2.8 2.8 4.4 6.6 4.4 10.6h6.2c0-11.7-9.5-21.1-21.1-21.1zM0 0v6.1c14.2 0 25.8 11.6 25.8 25.9h6.2c0-17.6-14.4-32-32-32z\"\/><\/svg><\/span><\/a><\/li><li class=\"shariff-button linkedin shariff-nocustomcolor\" style=\"background-color:#1488bf\"><a href=\"https:\/\/www.linkedin.com\/sharing\/share-offsite\/?url=https%3A%2F%2Fblog.viking-studios.net%2Fen%2Fyour-own-cloud-nextcloud-update-on-a-synology-diskstation-and-dsm-6%2F\" title=\"Share on LinkedIn\" aria-label=\"Share on LinkedIn\" role=\"button\" rel=\"noopener nofollow\" class=\"shariff-link\" style=\"; background-color:#0077b5; color:#fff\" target=\"_blank\"><span class=\"shariff-icon\" style=\"\"><svg width=\"32px\" height=\"20px\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 27 32\"><path fill=\"#0077b5\" d=\"M6.2 11.2v17.7h-5.9v-17.7h5.9zM6.6 5.7q0 1.3-0.9 2.2t-2.4 0.9h0q-1.5 0-2.4-0.9t-0.9-2.2 0.9-2.2 2.4-0.9 2.4 0.9 0.9 2.2zM27.4 18.7v10.1h-5.9v-9.5q0-1.9-0.7-2.9t-2.3-1.1q-1.1 0-1.9 0.6t-1.2 1.5q-0.2 0.5-0.2 1.4v9.9h-5.9q0-7.1 0-11.6t0-5.3l0-0.9h5.9v2.6h0q0.4-0.6 0.7-1t1-0.9 1.6-0.8 2-0.3q3 0 4.9 2t1.9 6z\"\/><\/svg><\/span><\/a><\/li><li class=\"shariff-button xing shariff-nocustomcolor\" style=\"background-color:#29888a\"><a href=\"https:\/\/www.xing.com\/spi\/shares\/new?url=https%3A%2F%2Fblog.viking-studios.net%2Fen%2Fyour-own-cloud-nextcloud-update-on-a-synology-diskstation-and-dsm-6%2F\" title=\"Share on XING\" aria-label=\"Share on XING\" role=\"button\" rel=\"noopener nofollow\" class=\"shariff-link\" style=\"; background-color:#126567; color:#fff\" target=\"_blank\"><span class=\"shariff-icon\" style=\"\"><svg width=\"32px\" height=\"20px\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 25 32\"><path fill=\"#126567\" d=\"M10.7 11.9q-0.2 0.3-4.6 8.2-0.5 0.8-1.2 0.8h-4.3q-0.4 0-0.5-0.3t0-0.6l4.5-8q0 0 0 0l-2.9-5q-0.2-0.4 0-0.7 0.2-0.3 0.5-0.3h4.3q0.7 0 1.2 0.8zM25.1 0.4q0.2 0.3 0 0.7l-9.4 16.7 6 11q0.2 0.4 0 0.6-0.2 0.3-0.6 0.3h-4.3q-0.7 0-1.2-0.8l-6-11.1q0.3-0.6 9.5-16.8 0.4-0.8 1.2-0.8h4.3q0.4 0 0.5 0.3z\"\/><\/svg><\/span><\/a><\/li><li class=\"shariff-button printer shariff-nocustomcolor\" style=\"background-color:#a8a8a8\"><a href=\"javascript:window.print()\" title=\"print\" aria-label=\"print\" role=\"button\" rel=\"noopener nofollow\" class=\"shariff-link\" style=\"; background-color:#999; color:#fff\"><span class=\"shariff-icon\" style=\"\"><svg width=\"32px\" height=\"20px\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 30 32\"><path fill=\"#999\" d=\"M6.8 27.4h16v-4.6h-16v4.6zM6.8 16h16v-6.8h-2.8q-0.7 0-1.2-0.5t-0.5-1.2v-2.8h-11.4v11.4zM27.4 17.2q0-0.5-0.3-0.8t-0.8-0.4-0.8 0.4-0.3 0.8 0.3 0.8 0.8 0.3 0.8-0.3 0.3-0.8zM29.7 17.2v7.4q0 0.2-0.2 0.4t-0.4 0.2h-4v2.8q0 0.7-0.5 1.2t-1.2 0.5h-17.2q-0.7 0-1.2-0.5t-0.5-1.2v-2.8h-4q-0.2 0-0.4-0.2t-0.2-0.4v-7.4q0-1.4 1-2.4t2.4-1h1.2v-9.7q0-0.7 0.5-1.2t1.2-0.5h12q0.7 0 1.6 0.4t1.3 0.8l2.7 2.7q0.5 0.5 0.9 1.4t0.4 1.6v4.6h1.1q1.4 0 2.4 1t1 2.4z\"\/><\/svg><\/span><\/a><\/li><li class=\"shariff-button diaspora shariff-nocustomcolor\" style=\"background-color:#b3b3b3\"><a href=\"https:\/\/share.diasporafoundation.org\/?url=https%3A%2F%2Fblog.viking-studios.net%2Fen%2Fyour-own-cloud-nextcloud-update-on-a-synology-diskstation-and-dsm-6%2F&title=Your%20own%20cloud%3A%20Nextcloud%20update%20%20on%20a%20Synology%20DiskStation%20and%20DSM%206\" title=\"Share on diaspora*\" aria-label=\"Share on diaspora*\" role=\"button\" rel=\"noopener nofollow\" class=\"shariff-link\" style=\"; background-color:#999; color:#fff\" target=\"_blank\"><span class=\"shariff-icon\" style=\"\"><svg width=\"32px\" height=\"20px\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 33 32\"><path fill=\"#999\" d=\"M20.6 28.2c-0.8-1.2-2.1-2.9-2.9-4-0.8-1.1-1.4-1.9-1.4-1.9s-1.2 1.6-2.8 3.8c-1.5 2.1-2.8 3.8-2.8 3.8 0 0-5.5-3.9-5.5-3.9 0 0 1.2-1.8 2.8-4s2.8-4 2.8-4.1c0-0.1-0.5-0.2-4.4-1.5-2.4-0.8-4.4-1.5-4.4-1.5 0 0 0.2-0.8 1-3.2 0.6-1.8 1-3.2 1.1-3.3s2.1 0.6 4.6 1.5c2.5 0.8 4.6 1.5 4.6 1.5s0.1 0 0.1-0.1c0 0 0-2.2 0-4.8s0-4.7 0.1-4.7c0 0 0.7 0 3.3 0 1.8 0 3.3 0 3.4 0 0 0 0.1 1.4 0.2 4.6 0.1 5.2 0.1 5.3 0.2 5.3 0 0 2-0.7 4.5-1.5s4.4-1.5 4.4-1.5c0 0.1 2 6.5 2 6.5 0 0-2 0.7-4.5 1.5-3.4 1.1-4.5 1.5-4.5 1.6 0 0 1.2 1.8 2.6 3.9 1.5 2.1 2.6 3.9 2.6 3.9 0 0-5.4 4-5.5 4 0 0-0.7-0.9-1.5-2.1z\"\/><\/svg><\/span><\/a><\/li><li class=\"shariff-button flipboard shariff-nocustomcolor\" style=\"background-color:#373737\"><a href=\"https:\/\/share.flipboard.com\/bookmarklet\/popout?v=2&title=Your%20own%20cloud%3A%20Nextcloud%20update%20%20on%20a%20Synology%20DiskStation%20and%20DSM%206&url=https%3A%2F%2Fblog.viking-studios.net%2Fen%2Fyour-own-cloud-nextcloud-update-on-a-synology-diskstation-and-dsm-6%2F\" title=\"Share on Flipboard\" aria-label=\"Share on Flipboard\" role=\"button\" rel=\"noopener nofollow\" class=\"shariff-link\" style=\"; background-color:#f52828; color:#fff\" target=\"_blank\"><span class=\"shariff-icon\" style=\"\"><svg width=\"24px\" height=\"24px\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 24 24\"><path fill=\"#f52828\" d=\"M0 0h8v24H0V0zm9 9h7v7H9V9zm0-9h15v8H9V0z\"\/><\/svg><\/span><\/a><\/li><li class=\"shariff-button mastodon shariff-nocustomcolor\" style=\"background-color:#563ACC\"><a href=\"https:\/\/s2f.kytta.dev\/?text=Your%20own%20cloud%3A%20Nextcloud%20update%20%20on%20a%20Synology%20DiskStation%20and%20DSM%206 https%3A%2F%2Fblog.viking-studios.net%2Fen%2Fyour-own-cloud-nextcloud-update-on-a-synology-diskstation-and-dsm-6%2F\" title=\"Share on Mastodon\" aria-label=\"Share on Mastodon\" role=\"button\" rel=\"noopener nofollow\" class=\"shariff-link\" style=\"; background-color:#6364FF; color:#fff\" target=\"_blank\"><span class=\"shariff-icon\" style=\"\"><svg width=\"75\" height=\"79\" viewBox=\"0 0 75 79\" fill=\"none\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M37.813-.025C32.462-.058 27.114.13 21.79.598c-8.544.621-17.214 5.58-20.203 13.931C-1.12 23.318.408 32.622.465 41.65c.375 7.316.943 14.78 3.392 21.73 4.365 9.465 14.781 14.537 24.782 15.385 7.64.698 15.761-.213 22.517-4.026a54.1 54.1 0 0 0 .01-6.232c-6.855 1.316-14.101 2.609-21.049 1.074-3.883-.88-6.876-4.237-7.25-8.215-1.53-3.988 3.78-.43 5.584-.883 9.048 1.224 18.282.776 27.303-.462 7.044-.837 14.26-4.788 16.65-11.833 2.263-6.135 1.215-12.79 1.698-19.177.06-3.84.09-7.692-.262-11.52C72.596 7.844 63.223.981 53.834.684a219.453 219.453 0 0 0-16.022-.71zm11.294 12.882c5.5-.067 10.801 4.143 11.67 9.653.338 1.48.471 3 .471 4.515v21.088h-8.357c-.07-7.588.153-15.182-.131-22.765-.587-4.368-7.04-5.747-9.672-2.397-2.422 3.04-1.47 7.155-1.67 10.735v6.392h-8.307c-.146-4.996.359-10.045-.404-15.002-1.108-4.218-7.809-5.565-10.094-1.666-1.685 3.046-.712 6.634-.976 9.936v14.767h-8.354c.109-8.165-.238-16.344.215-24.5.674-5.346 5.095-10.389 10.676-10.627 4.902-.739 10.103 2.038 12.053 6.631.375 1.435 1.76 1.932 1.994.084 1.844-3.704 5.501-6.739 9.785-6.771.367-.044.735-.068 1.101-.073z\"\/><defs><linearGradient id=\"paint0_linear_549_34\" x1=\"37.0692\" y1=\"0\" x2=\"37.0692\" y2=\"79\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#6364FF\"\/><stop offset=\"1\" stop-color=\"#563ACC\"\/><\/linearGradient><\/defs><\/svg><\/span><\/a><\/li><li class=\"shariff-button pocket shariff-nocustomcolor\" style=\"background-color:#444\"><a href=\"https:\/\/getpocket.com\/save?url=https%3A%2F%2Fblog.viking-studios.net%2Fen%2Fyour-own-cloud-nextcloud-update-on-a-synology-diskstation-and-dsm-6%2F&title=Your%20own%20cloud%3A%20Nextcloud%20update%20%20on%20a%20Synology%20DiskStation%20and%20DSM%206\" title=\"Save to Pocket\" aria-label=\"Save to Pocket\" role=\"button\" rel=\"noopener nofollow\" class=\"shariff-link\" style=\"; background-color:#ff0000; color:#fff\" target=\"_blank\"><span class=\"shariff-icon\" style=\"\"><svg width=\"32px\" height=\"20px\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 27 28\"><path fill=\"#ff0000\" d=\"M24.5 2q1 0 1.7 0.7t0.7 1.7v8.1q0 2.8-1.1 5.3t-2.9 4.3-4.3 2.9-5.2 1.1q-2.7 0-5.2-1.1t-4.3-2.9-2.9-4.3-1.1-5.2v-8.1q0-1 0.7-1.7t1.7-0.7h22zM13.5 18.6q0.7 0 1.3-0.5l6.3-6.1q0.6-0.5 0.6-1.3 0-0.8-0.5-1.3t-1.3-0.5q-0.7 0-1.3 0.5l-5 4.8-5-4.8q-0.5-0.5-1.3-0.5-0.8 0-1.3 0.5t-0.5 1.3q0 0.8 0.6 1.3l6.3 6.1q0.5 0.5 1.3 0.5z\"\/><\/svg><\/span><\/a><\/li><li class=\"shariff-button threema shariff-nocustomcolor shariff-mobile\" style=\"background-color:#4fbc24\"><a href=\"threema:\/\/compose?text=Your%20own%20cloud%3A%20Nextcloud%20update%20%20on%20a%20Synology%20DiskStation%20and%20DSM%206%20https%3A%2F%2Fblog.viking-studios.net%2Fen%2Fyour-own-cloud-nextcloud-update-on-a-synology-diskstation-and-dsm-6%2F\" title=\"Share on Threema\" aria-label=\"Share on Threema\" role=\"button\" rel=\"noopener nofollow\" class=\"shariff-link\" style=\"; background-color:#1f1f1f; color:#fff\" target=\"_blank\"><span class=\"shariff-icon\" style=\"\"><svg width=\"32px\" height=\"20px\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 32 32\"><path fill=\"#1f1f1f\" d=\"M30.8 10.9c-0.3-1.4-0.9-2.6-1.8-3.8-2-2.6-5.5-4.5-9.4-5.2-1.3-0.2-1.9-0.3-3.5-0.3s-2.2 0-3.5 0.3c-4 0.7-7.4 2.6-9.4 5.2-0.9 1.2-1.5 2.4-1.8 3.8-0.1 0.5-0.2 1.2-0.2 1.6 0 0.4 0.1 1.1 0.2 1.6 0.4 1.9 1.3 3.4 2.9 5 0.8 0.8 0.8 0.8 0.7 1.3 0 0.6-0.5 1.6-1.7 3.6-0.3 0.5-0.5 0.9-0.5 0.9 0 0.1 0.1 0.1 0.5 0 0.8-0.2 2.3-0.6 5.6-1.6 1.1-0.3 1.3-0.4 2.3-0.4 0.8 0 1.1 0 2.3 0.2 1.5 0.2 3.5 0.2 4.9 0 5.1-0.6 9.3-2.9 11.4-6.3 0.5-0.9 0.9-1.8 1.1-2.8 0.1-0.5 0.2-1.1 0.2-1.6 0-0.7-0.1-1.1-0.2-1.6-0.3-1.4 0.1 0.5 0 0zM20.6 17.3c0 0.4-0.4 0.8-0.8 0.8h-7.7c-0.4 0-0.8-0.4-0.8-0.8v-4.6c0-0.4 0.4-0.8 0.8-0.8h0.2l0-1.6c0-0.9 0-1.8 0.1-2 0.1-0.6 0.6-1.2 1.1-1.7s1.1-0.7 1.9-0.8c1.8-0.3 3.7 0.7 4.2 2.2 0.1 0.3 0.1 0.7 0.1 2.1v0 1.7h0.1c0.4 0 0.8 0.4 0.8 0.8v4.6zM15.6 7.3c-0.5 0.1-0.8 0.3-1.2 0.6s-0.6 0.8-0.7 1.3c0 0.2 0 0.8 0 1.5l0 1.2h4.6v-1.3c0-1 0-1.4-0.1-1.6-0.3-1.1-1.5-1.9-2.6-1.7zM25.8 28.2c0 1.2-1 2.2-2.1 2.2s-2.1-1-2.1-2.1c0-1.2 1-2.1 2.2-2.1s2.2 1 2.2 2.2zM18.1 28.2c0 1.2-1 2.2-2.1 2.2s-2.1-1-2.1-2.1c0-1.2 1-2.1 2.2-2.1s2.2 1 2.2 2.2zM10.4 28.2c0 1.2-1 2.2-2.1 2.2s-2.1-1-2.1-2.1c0-1.2 1-2.1 2.2-2.1s2.2 1 2.2 2.2z\"\/><\/svg><\/span><\/a><\/li><li class=\"shariff-button vk shariff-nocustomcolor\" style=\"background-color:#4273c8\"><a href=\"https:\/\/vk.com\/share.php?url=https%3A%2F%2Fblog.viking-studios.net%2Fen%2Fyour-own-cloud-nextcloud-update-on-a-synology-diskstation-and-dsm-6%2F\" title=\"Share on VK\" aria-label=\"Share on VK\" role=\"button\" rel=\"noopener nofollow\" class=\"shariff-link\" style=\"; background-color:#527498; color:#fff\" target=\"_blank\"><span class=\"shariff-icon\" style=\"\"><svg width=\"32px\" height=\"20px\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 34 32\"><path fill=\"#527498\" d=\"M34.2 9.3q0.4 1.1-2.7 5.3-0.4 0.6-1.2 1.5-1.4 1.8-1.6 2.3-0.3 0.7 0.3 1.4 0.3 0.4 1.4 1.5h0l0.1 0.1q2.5 2.3 3.4 3.9 0.1 0.1 0.1 0.2t0.1 0.5 0 0.6-0.4 0.5-1.1 0.2l-4.6 0.1q-0.4 0.1-1-0.1t-0.9-0.4l-0.4-0.2q-0.5-0.4-1.2-1.1t-1.2-1.4-1.1-1-1-0.3q-0.1 0-0.1 0.1t-0.3 0.3-0.4 0.5-0.3 0.9-0.1 1.4q0 0.3-0.1 0.5t-0.1 0.3l-0.1 0.1q-0.3 0.3-0.9 0.4h-2.1q-1.3 0.1-2.6-0.3t-2.3-0.9-1.8-1.2-1.3-1l-0.4-0.4q-0.2-0.2-0.5-0.5t-1.3-1.6-1.9-2.7-2.2-3.8-2.3-4.9q-0.1-0.3-0.1-0.5t0.1-0.3l0.1-0.1q0.3-0.3 1-0.3l4.9 0q0.2 0 0.4 0.1t0.3 0.2l0.1 0.1q0.3 0.2 0.4 0.6 0.4 0.9 0.8 1.8t0.7 1.5l0.3 0.5q0.5 1.1 1 1.9t0.9 1.2 0.7 0.7 0.6 0.3 0.5-0.1q0 0 0.1-0.1t0.2-0.4 0.2-0.8 0.2-1.4 0-2.2q0-0.7-0.2-1.3t-0.2-0.8l-0.1-0.2q-0.4-0.6-1.5-0.8-0.2 0 0.1-0.4 0.3-0.3 0.7-0.5 0.9-0.5 4.3-0.4 1.5 0 2.4 0.2 0.4 0.1 0.6 0.2t0.4 0.4 0.2 0.6 0.1 0.8 0 1 0 1.3 0 1.5q0 0.2 0 0.8t0 0.9 0.1 0.7 0.2 0.7 0.4 0.4q0.1 0 0.3 0.1t0.5-0.2 0.7-0.6 0.9-1.2 1.2-1.9q1.1-1.9 1.9-4 0.1-0.2 0.2-0.3t0.2-0.2l0.1-0.1 0.1 0t0.2-0.1 0.4 0l5.1 0q0.7-0.1 1.1 0t0.6 0.3z\"\/><\/svg><\/span><span data-service=\"vk\" style=\"color:#527498\" class=\"shariff-count shariff-hidezero\"><\/span>&nbsp;<\/a><\/li><li class=\"shariff-button wallabag shariff-nocustomcolor\" style=\"background-color:#2bbbad\"><a href=\"https:\/\/app.wallabag.it\/bookmarklet?url=https%3A%2F%2Fblog.viking-studios.net%2Fen%2Fyour-own-cloud-nextcloud-update-on-a-synology-diskstation-and-dsm-6%2F\" title=\"Save to wallabag\" aria-label=\"Save to wallabag\" role=\"button\" rel=\"noopener nofollow\" class=\"shariff-link\" style=\"; background-color:#26a69a; color:#fff\" target=\"_blank\"><span class=\"shariff-icon\" style=\"\"><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 600 500\"><path fill=\"#26a69a\" d=\"M381 474l-5 7c-15 19-29 20-45 2-14-15-30-28-47-38a75 75 0 0 1-15-12c-8-8-10-19-8-30 2-8-2-12-8-16l-3 12c-8 33-31 51-64 57-36 6-73 7-109 5l-57-4c-9-1-9-1-7-9h46c28 0 55-1 82-9 45-14 67-49 62-96l-4-25 43 13q101 24 197-11c6-2 10-2 14 5l-49 53-15 15c-8 8-8 15 1 23l24 18 50 34c-8 20-26 26-43 14l-43-34c-14-10-23-25-31-39-3-4-6-6-10-5h-36c-5-1-8 1-9 6zM409 4l-6 49c-2 19-9 35-28 45l40 50c-13 9-26 11-40 12-19 0-36-6-54-11-16-4-34-9-51-11-10-2-20 0-31 1l30-38c-16-9-25-23-28-41l-1-15-3-41c21 5 38 16 51 33l11 16 22 29c10-9 19-18 24-29 12-26 32-42 60-48l4-1zm-19 187c12 9 17 20 16 35l-2 47c-3 31-26 48-57 40a114 114 0 0 1-11-3 44 44 0 0 0-28-1 110 110 0 0 1-28 5c-16 0-28-8-33-24-6-16-6-33-6-50v-14c-2-15 2-28 17-35 10 6 19 13 17 27v32c-1 14 5 25 16 33 15-12 16-28 15-45v-30c0-11 4-15 12-16 8-2 11 0 15 10 6 13 10 27 8 41-2 17 4 30 16 40 11-10 16-23 14-38v-16c0-21 1-24 19-38z\"\/><\/svg><\/span><\/a><\/li><li class=\"shariff-button info shariff-nocustomcolor\" style=\"background-color:#eee\"><a href=\"http:\/\/ct.de\/-2467514\" title=\"More information\" aria-label=\"More information\" role=\"button\" rel=\"noopener \" class=\"shariff-link\" style=\"; background-color:#fff; color:#fff\" target=\"_blank\"><span class=\"shariff-icon\" style=\"\"><svg width=\"32px\" height=\"20px\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 11 32\"><path fill=\"#999\" d=\"M11.4 24v2.3q0 0.5-0.3 0.8t-0.8 0.4h-9.1q-0.5 0-0.8-0.4t-0.4-0.8v-2.3q0-0.5 0.4-0.8t0.8-0.4h1.1v-6.8h-1.1q-0.5 0-0.8-0.4t-0.4-0.8v-2.3q0-0.5 0.4-0.8t0.8-0.4h6.8q0.5 0 0.8 0.4t0.4 0.8v10.3h1.1q0.5 0 0.8 0.4t0.3 0.8zM9.2 3.4v3.4q0 0.5-0.4 0.8t-0.8 0.4h-4.6q-0.4 0-0.8-0.4t-0.4-0.8v-3.4q0-0.4 0.4-0.8t0.8-0.4h4.6q0.5 0 0.8 0.4t0.4 0.8z\"\/><\/svg><\/span><\/a><\/li><\/ul><\/div>","protected":false},"excerpt":{"rendered":"<p>In the\u00a0last article\u00a0I&#8217;ve explained, how to fix common errors and security issues and how to optimize Nextcloud in a productive environment. In this article I&#8217;m going to show you how to update Nextcloud, once manually and once with the new updater app. &nbsp; Manual Update &nbsp; First create an backup of your Nextcloud database. Maintenance [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":55,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[19,7],"tags":[20,21,22,23,24,25,29],"class_list":["post-62","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-network","category-technology","tag-cloud","tag-diskstation","tag-dsm-6","tag-nextcloud","tag-nextcloud-10","tag-synology","tag-updater"],"_links":{"self":[{"href":"https:\/\/blog.viking-studios.net\/en\/wp-json\/wp\/v2\/posts\/62","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/blog.viking-studios.net\/en\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/blog.viking-studios.net\/en\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/blog.viking-studios.net\/en\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/blog.viking-studios.net\/en\/wp-json\/wp\/v2\/comments?post=62"}],"version-history":[{"count":0,"href":"https:\/\/blog.viking-studios.net\/en\/wp-json\/wp\/v2\/posts\/62\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/blog.viking-studios.net\/en\/wp-json\/wp\/v2\/media\/55"}],"wp:attachment":[{"href":"https:\/\/blog.viking-studios.net\/en\/wp-json\/wp\/v2\/media?parent=62"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/blog.viking-studios.net\/en\/wp-json\/wp\/v2\/categories?post=62"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/blog.viking-studios.net\/en\/wp-json\/wp\/v2\/tags?post=62"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}