this post was submitted on 11 Jun 2024
29 points (100.0% liked)
technology
23303 readers
31 users here now
On the road to fully automated luxury gay space communism.
Spreading Linux propaganda since 2020
- Ways to run Microsoft/Adobe and more on Linux
- The Ultimate FOSS Guide For Android
- Great libre software on Windows
- Hey you, the lib still using Chrome. Read this post!
Rules:
- 1. Obviously abide by the sitewide code of conduct. Bigotry will be met with an immediate ban
- 2. This community is about technology. Offtopic is permitted as long as it is kept in the comment sections
- 3. Although this is not /c/libre, FOSS related posting is tolerated, and even welcome in the case of effort posts
- 4. We believe technology should be liberating. As such, avoid promoting proprietary and/or bourgeois technology
- 5. Explanatory posts to correct the potential mistakes a comrade made in a post of their own are allowed, as long as they remain respectful
- 6. No crypto (Bitcoin, NFT, etc.) speculation, unless it is purely informative and not too cringe
- 7. Absolutely no tech bro shit. If you have a good opinion of Silicon Valley billionaires please manifest yourself so we can ban you.
founded 4 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
I can't answer your Ente questions but I do recommend using a self-hosting strategy (with or without Ente) if it is within your skillset. The costs are your time and commodity hardware and cloud services. For example, if you just use a cloud service for backups, then the cost of storage will be something similar to Amazon Glacier (I use a different S3-compatible host). $4/TB/month to store, around $100/TB to download. You will presumably only download all of your (hopefully encrypted) photos when you need to test or restore the backups. There are also S3-compatible services that are cheaper than this, but this is a well-known one.
Also, depending on how your photos have been organized, you may benefit from a deduping storage strategy that does incremental backups. If you used Borg or a similar piece of software, you would benefit cost-wise in two ways:
It will dedupe at the beginning of the backup process. If you have 3 copies of the exact same video for whatever reason, it will realize this and only include the data once in the backup.
Incremental backups will sometimes use a multi-file strategy that is efficient for efficient synchronization to other services. Basically, they sometimes store files or groups of files together more or less chronologically. When you then want to send the obfuscated backup data, you can use a sync program that tries to send only the backup files that have changed, which is usually a small minority of files. This is great for when you need to get that data back off the cloud to test backups. Rather than download 1 TB every time you can synchronize the data to a dedicated test volume on your own server where you always keep the last copy (so it can recognize and download only the changes).