Windows 11 Pro, Installing Borg via WSL and/or Docker, and Backing Up Mapped Drives from a NAS on LAN? #9132
-
|
I have a Synology NAS which houses all of the data I want to back up (currently 17TB and growing, though initially will be starting with <2TB as that is what I am starting with at Rsync.net). My Windows 11 Pro machine has a fast SSD and i9 CPU, with 64GB of RAM, so I'm thinking that is more suitable to running Borg than trying to run Borg on my Synology (unless I'm going to upgrade my RAM on the NAS). Given that I'm a Linux newbie, I figure also installing Vorta to have a GUI will be helpful. Any advice and considerations for installing Borg purely via WSL (Windows Subsystem for Linux) or via Docker (which is of course still on top of WSL), as well as recommended methods for mapping my network shares in whichever method? ~16TB of my current data is video files of varying kinds and sizes (ranging from 500MB to 50GB). That data does not change, though more will be added (eg, from ongoing videography recordings). I am very new to Borg, but I'm wondering if I'm thinking I might eventually backup all of this, is there any benefit to separating out my data somewhat? For example, having all of my videos in the same repository(?) so there's deduplication among those files (though there should be very few duplicates), but then having substantially different data (eg, text files, code files, Excel spreadsheets, etc) in a separate repository(?) which are only deduped among themselves? I'm just thinking that some data I'll want to be backing up frequently (maybe multiple times/day), whereas other data (eg, videos) can be once/day. Though the videos will be so much larger, so those backups will run much longer. I'm hoping there's ways to prioritize backup sets such that the more frequent backup set can interrupt (or run concurrently to) a backup set of larger files that will take much longer. I haven't gotten into the weeds of the docs yet to figure out if/how that might work. Thanks in advance for any advice/guidance on any of the above! :) |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
I use neither of these, but WSL is said to be similar to Ubuntu, so you could follow the borg documentation for Ubuntu Linux.
Make 1 or more separate repos for these. Running "borg check" is slow for huge repos.
Yes, have a separate repo for these. It's also about retention time (borg prune), faster borg check, more frequent backups, etc.
With borg 1.x, you can only run 1 operation per repo at the same time. |
Beta Was this translation helpful? Give feedback.
I use neither of these, but WSL is said to be similar to Ubuntu, so you could follow the borg documentation for Ubuntu Linux.
Make 1 or more separate repos for these. Running "borg check" is slow for huge repos.
Yes, have a separate repo for these. It's also about retention time (borg prune), faster borg check, more frequent backup…