<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[Borg backup to local&#x2F;attached and S3 Compatible Object Storage]]></title><description><![CDATA[<p dir="auto">How about a multi-backup option:</p>
<ol>
<li>Borg backup to local/attached storage</li>
<li>Rsync/Tarball to S3</li>
</ol>
<p dir="auto"><a href="https://borgbackup.readthedocs.io" target="_blank" rel="noopener noreferrer nofollow ugc">https://borgbackup.readthedocs.io</a></p>
<p dir="auto">And some random links form Googling the same:</p>
<p dir="auto"><a href="https://opensource.com/article/17/10/backing-your-machines-borg" target="_blank" rel="noopener noreferrer nofollow ugc">https://opensource.com/article/17/10/backing-your-machines-borg</a><br />
<a href="https://github.com/borgbackup/borg/issues/102" target="_blank" rel="noopener noreferrer nofollow ugc">https://github.com/borgbackup/borg/issues/102</a><br />
<a href="https://habd.as/post/borg-backup-minio-scaleway/" target="_blank" rel="noopener noreferrer nofollow ugc">https://habd.as/post/borg-backup-minio-scaleway/</a><br />
<a href="https://github.com/luispabon/borg-s3-home-backup" target="_blank" rel="noopener noreferrer nofollow ugc">https://github.com/luispabon/borg-s3-home-backup</a></p>
]]></description><link>https://forum.cloudron.io/topic/2818/borg-backup-to-local-attached-and-s3-compatible-object-storage</link><generator>RSS for Node</generator><lastBuildDate>Tue, 14 Apr 2026 15:06:30 GMT</lastBuildDate><atom:link href="https://forum.cloudron.io/topic/2818.rss" rel="self" type="application/rss+xml"/><pubDate>Mon, 13 Jul 2020 02:22:35 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Borg backup to local&#x2F;attached and S3 Compatible Object Storage on Mon, 14 Aug 2023 04:30:32 GMT]]></title><description><![CDATA[<p dir="auto">In case, anyone is using borgbase, they seem to be having a big outage. Possibly down for a week already.</p>
<p dir="auto"><a href="https://status.borgbase.com/status/default" target="_blank" rel="noopener noreferrer nofollow ugc">https://status.borgbase.com/status/default</a></p>
<p dir="auto">I found out from <a href="https://news.ycombinator.com/item?id=37115540" target="_blank" rel="noopener noreferrer nofollow ugc">https://news.ycombinator.com/item?id=37115540</a><br />
<img src="/assets/uploads/files/1691987417755-95b7fff5-7246-4cb1-a359-568099bf35cc-image-resized.png" alt="image.png" class=" img-fluid img-markdown" /></p>
]]></description><link>https://forum.cloudron.io/post/71798</link><guid isPermaLink="true">https://forum.cloudron.io/post/71798</guid><dc:creator><![CDATA[girish]]></dc:creator><pubDate>Mon, 14 Aug 2023 04:30:32 GMT</pubDate></item><item><title><![CDATA[Reply to Borg backup to local&#x2F;attached and S3 Compatible Object Storage on Wed, 21 Apr 2021 05:14:14 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/dswd" aria-label="Profile: dswd">@<bdi>dswd</bdi></a> said in <a href="/post/30111">Borg backup to local/attached and S3 Compatible Object Storage</a>:</p>
<blockquote>
<p dir="auto">Since I opened that issue back then, I want to mention that in the meantime I developed my own backup solution which I think is better than Borg. Right now I am 90% done with version 2 of it and I will definitively use it to backup my Cloudron instance.</p>
</blockquote>
<p dir="auto">As mentioned before, I use the built-in daily unencrypted Backup to local filesystem using the rsync backend and the "3 daily, 4 weekly, 6 monthly" schedule.</p>
<p dir="auto">These daily encrypted backups of the "snapshot" folder are backed up via <a href="https://forum.cloudron.io/post/22631">restic</a> to OneDrive (which is in my O365 subscription) with the same schedule as above.</p>
<p dir="auto">This gives me mountable(!) remote point-in-time backups.</p>
<p dir="auto">What I use for backing up (daily):</p>
<pre><code>#!/bin/bash
d=$(date +%Y-%m-%d)
if pidof -o %PPID -x “$0”; then
echo “$(date “+%d.%m.%Y %T”) Exit, already running.”
exit 1
fi
restic -r rclone:onedrive:restic backup /media/Cloudron/snapshot/ -p=resticpw
restic -r rclone:onedrive:restic forget --keep-monthly 6 --keep-weekly 4 --keep-daily 7 -p=resticpw
</code></pre>
<p dir="auto">What I use for pruning (once a month):</p>
<pre><code>#!/bin/bash
d=$(date +%Y-%m-%d)
if pidof -o %PPID -x “$0”; then
echo “$(date “+%d.%m.%Y %T”) Exit, already running.”
exit 1
fi
restic -r rclone:onedrive:restic prune -p=resticpw
</code></pre>
]]></description><link>https://forum.cloudron.io/post/30139</link><guid isPermaLink="true">https://forum.cloudron.io/post/30139</guid><dc:creator><![CDATA[necrevistonnezr]]></dc:creator><pubDate>Wed, 21 Apr 2021 05:14:14 GMT</pubDate></item><item><title><![CDATA[Reply to Borg backup to local&#x2F;attached and S3 Compatible Object Storage on Tue, 20 Apr 2021 23:39:34 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/dswd" aria-label="Profile: dswd">@<bdi>dswd</bdi></a> start another thread and tell us more.</p>
]]></description><link>https://forum.cloudron.io/post/30130</link><guid isPermaLink="true">https://forum.cloudron.io/post/30130</guid><dc:creator><![CDATA[robi]]></dc:creator><pubDate>Tue, 20 Apr 2021 23:39:34 GMT</pubDate></item><item><title><![CDATA[Reply to Borg backup to local&#x2F;attached and S3 Compatible Object Storage on Tue, 20 Apr 2021 18:59:54 GMT]]></title><description><![CDATA[<p dir="auto">Since I opened that issue back then, I want to mention that in the meantime I developed my own backup solution which I think is better than Borg. Right now I am 90% done with version 2 of it and I will definitively use it to backup my Cloudron instance.</p>
]]></description><link>https://forum.cloudron.io/post/30111</link><guid isPermaLink="true">https://forum.cloudron.io/post/30111</guid><dc:creator><![CDATA[dswd]]></dc:creator><pubDate>Tue, 20 Apr 2021 18:59:54 GMT</pubDate></item><item><title><![CDATA[Reply to Borg backup to local&#x2F;attached and S3 Compatible Object Storage on Tue, 20 Apr 2021 17:35:20 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/necrevistonnezr" aria-label="Profile: necrevistonnezr">@<bdi>necrevistonnezr</bdi></a> Very nice! Looks like a serious competitor to Backblaze, with pricing about the same up to 1TB if it's just for one computer. Adding this to my to-do list to give it a good trial and likely sign-up.</p>
]]></description><link>https://forum.cloudron.io/post/30098</link><guid isPermaLink="true">https://forum.cloudron.io/post/30098</guid><dc:creator><![CDATA[marcusquinn]]></dc:creator><pubDate>Tue, 20 Apr 2021 17:35:20 GMT</pubDate></item><item><title><![CDATA[Reply to Borg backup to local&#x2F;attached and S3 Compatible Object Storage on Tue, 20 Apr 2021 14:02:47 GMT]]></title><description><![CDATA[<p dir="auto">Off-topic but maybe interesting for some: There's a pretty desktop client for borg backup: <a href="https://github.com/borgbase/vorta" target="_blank" rel="noopener noreferrer nofollow ugc">https://github.com/borgbase/vorta</a> and/or <a href="https://vorta.borgbase.com/" target="_blank" rel="noopener noreferrer nofollow ugc">https://vorta.borgbase.com/</a></p>
<blockquote>
<p dir="auto">Vorta is a backup client for macOS and Linux desktops. It integrates the mighty BorgBackup with your desktop environment to protect your data from disk failure, ransomware and theft.</p>
<ul>
<li>Encrypted, deduplicated and compressed backups using Borg as backend.</li>
<li>No vendor lock-in – back up to local drives, your own server or BorgBase, a hosting service for Borg backups.</li>
<li>Open source – free to use, modify, improve and audit.</li>
<li>Flexible profiles to group source folders, backup destinations and schedules.</li>
<li>One place to view all point-in-time archives and restore individual files.</li>
</ul>
<p dir="auto">Vorta should work on all platforms that support Qt and Borg. This includes macOS, Ubuntu, Debian, Fedora, Arch Linux and many others. Windows is currently not fully supported by Borg, but this may change in the future.</p>
</blockquote>
<p dir="auto"><img src="/assets/uploads/files/1618927345325-vorta-screencast-6.gif" alt="vorta-screencast-6.gif" class=" img-fluid img-markdown" /></p>
]]></description><link>https://forum.cloudron.io/post/30085</link><guid isPermaLink="true">https://forum.cloudron.io/post/30085</guid><dc:creator><![CDATA[necrevistonnezr]]></dc:creator><pubDate>Tue, 20 Apr 2021 14:02:47 GMT</pubDate></item><item><title><![CDATA[Reply to Borg backup to local&#x2F;attached and S3 Compatible Object Storage on Fri, 16 Oct 2020 20:20:01 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/girish" aria-label="Profile: girish">@<bdi>girish</bdi></a> If there were a secondary backup target feature, that would allow for different backup experimentation.</p>
]]></description><link>https://forum.cloudron.io/post/16183</link><guid isPermaLink="true">https://forum.cloudron.io/post/16183</guid><dc:creator><![CDATA[robi]]></dc:creator><pubDate>Fri, 16 Oct 2020 20:20:01 GMT</pubDate></item><item><title><![CDATA[Reply to Borg backup to local&#x2F;attached and S3 Compatible Object Storage on Fri, 16 Oct 2020 00:33:13 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/girish" aria-label="Profile: girish">@<bdi>girish</bdi></a> fair enough, thanks for the update <img src="https://forum.cloudron.io/assets/plugins/nodebb-plugin-emoji/emoji/android/1f642.png?v=223f9defb2f" class="not-responsive emoji emoji-android emoji--slightly_smiling_face" style="height:23px;width:auto;vertical-align:middle" title=":)" alt="🙂" /></p>
]]></description><link>https://forum.cloudron.io/post/16128</link><guid isPermaLink="true">https://forum.cloudron.io/post/16128</guid><dc:creator><![CDATA[jdaviescoates]]></dc:creator><pubDate>Fri, 16 Oct 2020 00:33:13 GMT</pubDate></item><item><title><![CDATA[Reply to Borg backup to local&#x2F;attached and S3 Compatible Object Storage on Fri, 16 Oct 2020 00:09:51 GMT]]></title><description><![CDATA[<p dir="auto">Borg support is quite unlikely and low priority (mostly because we are not experts on borg and don't want to support a system we don't understand). As for per app backup format, we can re-evaluate it after 6.0.</p>
]]></description><link>https://forum.cloudron.io/post/16125</link><guid isPermaLink="true">https://forum.cloudron.io/post/16125</guid><dc:creator><![CDATA[girish]]></dc:creator><pubDate>Fri, 16 Oct 2020 00:09:51 GMT</pubDate></item><item><title><![CDATA[Reply to Borg backup to local&#x2F;attached and S3 Compatible Object Storage on Thu, 15 Oct 2020 23:48:39 GMT]]></title><description><![CDATA[<p dir="auto">Any plans for per-app backup configuration so we could have e.g. rsync just for Nextcloud or other apps where we've got loads of data? (I remember proposing or upvoting something about this before)</p>
<p dir="auto">Edit: it was proposed for inclusion in 4.5 <a href="https://forum.cloudron.io/post/5586">https://forum.cloudron.io/post/5586</a></p>
<p dir="auto">More details here:<br />
<a href="https://forum.cloudron.io/post/5936">https://forum.cloudron.io/post/5936</a></p>
<p dir="auto">But then bumped to maybe in 5.2:<br />
<a href="https://forum.cloudron.io/post/7083">https://forum.cloudron.io/post/7083</a></p>
<p dir="auto">What's the current state of play?</p>
<p dir="auto">Thanks! <img src="https://forum.cloudron.io/assets/plugins/nodebb-plugin-emoji/emoji/android/1f642.png?v=223f9defb2f" class="not-responsive emoji emoji-android emoji--slightly_smiling_face" style="height:23px;width:auto;vertical-align:middle" title=":)" alt="🙂" /></p>
]]></description><link>https://forum.cloudron.io/post/16120</link><guid isPermaLink="true">https://forum.cloudron.io/post/16120</guid><dc:creator><![CDATA[jdaviescoates]]></dc:creator><pubDate>Thu, 15 Oct 2020 23:48:39 GMT</pubDate></item><item><title><![CDATA[Reply to Borg backup to local&#x2F;attached and S3 Compatible Object Storage on Thu, 15 Oct 2020 23:38:17 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/girish" aria-label="Profile: girish">@<bdi>girish</bdi></a> said in <a href="/post/16118">Borg backup to local/attached and S3 Compatible Object Storage</a>:</p>
<blockquote>
<p dir="auto">I changed the permissions back now.</p>
</blockquote>
<p dir="auto">Thanks.</p>
<p dir="auto">I can see now that the most recent post there was from yourself 2 years ago saying:</p>
<blockquote>
<p dir="auto">We will probably not support this since nobody in the team has expertise on borg. But we now have rsync style backups.</p>
</blockquote>
<p dir="auto">That's a shame.</p>
<p dir="auto">Would it in theory be possible to just install it on my VPS where Cloudron is installed or what that be playing with fire? (as it is I've never touched it aside from initially installing Cloudron)</p>
]]></description><link>https://forum.cloudron.io/post/16119</link><guid isPermaLink="true">https://forum.cloudron.io/post/16119</guid><dc:creator><![CDATA[jdaviescoates]]></dc:creator><pubDate>Thu, 15 Oct 2020 23:38:17 GMT</pubDate></item><item><title><![CDATA[Reply to Borg backup to local&#x2F;attached and S3 Compatible Object Storage on Thu, 15 Oct 2020 23:21:25 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/jdaviescoates" aria-label="Profile: jdaviescoates">@<bdi>jdaviescoates</bdi></a> said in <a href="/post/16115">Borg backup to local/attached and S3 Compatible Object Storage</a>:</p>
<blockquote>
<p dir="auto">That link is a 404 (even after logging in)</p>
</blockquote>
<p dir="auto">Oh, that might be my bad. I had changed the GitLab Issues to 'Only Project Members' (because we got some low effort issue spam). I thought that made the issue tracker readonly for others, but looks like GitLab has no option for this. I changed the permissions back now.</p>
]]></description><link>https://forum.cloudron.io/post/16118</link><guid isPermaLink="true">https://forum.cloudron.io/post/16118</guid><dc:creator><![CDATA[girish]]></dc:creator><pubDate>Thu, 15 Oct 2020 23:21:25 GMT</pubDate></item><item><title><![CDATA[Reply to Borg backup to local&#x2F;attached and S3 Compatible Object Storage on Thu, 15 Oct 2020 23:20:55 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/jdaviescoates" aria-label="Profile: jdaviescoates">@<bdi>jdaviescoates</bdi></a> <a class="plugin-mentions-user plugin-mentions-a" href="/user/nebulon" aria-label="Profile: nebulon">@<bdi>nebulon</bdi></a> maybe we don't have access to <code>issues</code></p>
]]></description><link>https://forum.cloudron.io/post/16117</link><guid isPermaLink="true">https://forum.cloudron.io/post/16117</guid><dc:creator><![CDATA[robi]]></dc:creator><pubDate>Thu, 15 Oct 2020 23:20:55 GMT</pubDate></item><item><title><![CDATA[Reply to Borg backup to local&#x2F;attached and S3 Compatible Object Storage on Thu, 15 Oct 2020 23:08:57 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/nebulon" aria-label="Profile: nebulon">@<bdi>nebulon</bdi></a> said in <a href="/post/10552">Borg backup to local/attached and S3 Compatible Object Storage</a>:</p>
<blockquote>
<p dir="auto">Some historical background as well <a href="https://git.cloudron.io/cloudron/box/-/issues/238" target="_blank" rel="noopener noreferrer nofollow ugc">https://git.cloudron.io/cloudron/box/-/issues/238</a><br />
We may reevaluate supporting it.</p>
</blockquote>
<p dir="auto">That link is a 404 (even after logging in)</p>
]]></description><link>https://forum.cloudron.io/post/16115</link><guid isPermaLink="true">https://forum.cloudron.io/post/16115</guid><dc:creator><![CDATA[jdaviescoates]]></dc:creator><pubDate>Thu, 15 Oct 2020 23:08:57 GMT</pubDate></item><item><title><![CDATA[Reply to Borg backup to local&#x2F;attached and S3 Compatible Object Storage on Mon, 13 Jul 2020 09:25:34 GMT]]></title><description><![CDATA[<p dir="auto">Some historical background as well <a href="https://git.cloudron.io/cloudron/box/-/issues/238" target="_blank" rel="noopener noreferrer nofollow ugc">https://git.cloudron.io/cloudron/box/-/issues/238</a><br />
We may reevaluate supporting it.</p>
]]></description><link>https://forum.cloudron.io/post/10552</link><guid isPermaLink="true">https://forum.cloudron.io/post/10552</guid><dc:creator><![CDATA[nebulon]]></dc:creator><pubDate>Mon, 13 Jul 2020 09:25:34 GMT</pubDate></item></channel></rss>