

Learning not to take everything so seriously.
“Vhat are you… sinking about?”
If you meet a bear in the woods today, you met a bear. If all day long all you meet is bears…
you’re also a bear.
Yeah people here are overlooking the Sharpie pen, it’s quite nice.
some BOFH energy
Beyond your eventual technical solution, keep this in mind: untested backups don’t exist.
I recommend reading some documentation about industry-leading solutions like Veeam… you won’t be able to reproduce all of the enterprise-level functionality, at least not without spending a lot of money, but you can try to reproduce the basic practices of good backup systems.
Whatever system you implement, draft a testing plan. A simpler backup solution that you can test and validate will be worth more than something complex and highly detailed.
I mean… exposed to each other, sure, but they’re all exposed to Syncthing and the public relays.
It is a fantastic idea to start your home server project on some e-waste hardware, and use it until you know specifically what features you’re lacking that you would need better hardware for.
Why are we taking this so seriously?
Because it’s funnier that way.
I don’t want to actually be the Borg.
I totally did say “I’d be a Borg”
You seem very confused. Join the link, the Collective will bring you clarity!
I meant a socialist cyborg.
Don’t let your dreams stay dreams!
Er, wait, are you using Syncthing for its intended purpose of syncing files across devices on your local network? And then exposing that infrastructure to the internet? Or are you isolating Syncthing instances?
And this is why anyone who suggests that machine learning systems can be used to make social decisions of any kind should be laughed out of the room. Even when the system programs itself, its goals are set by people and it is trained on data generated and selected by people.
Hmm, the Borg internet (or intranet I guess) probably has a lot of entertainment material collected, but then we know that drone emotions are suppressed by implants so you wouldn’t actually be able to enjoy any of it…
“Homes” feels like a stretch… an alcove is worse than one of those sleeping pods in Japan, you don’t even get privacy.
I mean… the method is basically “join us or die”… I don’t think that’s particularly nice…
I don’t think enforced conformity through literal mind control counts as democracy.
Anything breaks, we’ll just replace it.
Including the brain. Especially the brain.
Hey, free healthcare!
Tragedy is comedy + time
As others have pointed out you can do this, but there are at least two major advantages to the way Linux distributions use package managers:
Shared libraries - on Windows most binaries will have their own code libraries rolled into them, which means that every program which uses that library has installed a copy of it on your hard drive, which is highly inefficient and wastes a lot of hard drive space, and means that when a new version of the library is released you still have to wait for each program developer to implement it in a new version of their binary. On Linux, applications installed via the package manager can share a single copy of common dependencies like code libraries, and that library can be updated separately from the applications that use it.
Easy updating - on Windows you would have to download new versions of each program individually and install them when a new version is released. If you don’t do this regularly in today’s internet-dependent world, you expose your system to a lot of vulnerabilities. With a Linux package manager you can simply issue the update command (e.g. sudo apt upgrade
) and the package manager will download all the new versions of the applications and install them for you.