TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Ask HN: Best Way to Store Files in the Cloud Without Third-Party Sync Apps?

2 pointsby Daunk2 months ago
I recently lost a lot of data due to issues with my cloud provider, so now I’m looking for a more reliable way to store files in the cloud—something that includes automatic backups but doesn’t rely on third-party sync apps like Dropbox, Google Drive, or OneDrive.<p>I have multiple server computers that need to upload and download files reliably, preferably using standard protocols (SFTP, WebDAV, rsync, etc.) rather than a dedicated syncing client. Keeping the data at home isn’t an option, and I don’t want to have to think about it—I just need to know my data is safe.<p>Ideally, the solution should:<p>- Allow direct access from multiple machines<p>- Support automatic backups (whether for individual files or full disk images)<p>- Be cost-effective and scalable in terms of storage size<p>- Not require installing proprietary syncing software<p>What are the best options for this?

4 comments

pwg2 months ago
Take a look a rclone (<a href="https:&#x2F;&#x2F;en.wikipedia.org&#x2F;wiki&#x2F;Rclone" rel="nofollow">https:&#x2F;&#x2F;en.wikipedia.org&#x2F;wiki&#x2F;Rclone</a>). It supports numerous cloud providers. You&#x27;ll have to build up the rest of your requirements yourself.
tdurand2 months ago
rsync.net supports rsync and sftp and has a neat snapshot feature (<a href="https:&#x2F;&#x2F;www.rsync.net&#x2F;resources&#x2F;howto&#x2F;snapshots.html" rel="nofollow">https:&#x2F;&#x2F;www.rsync.net&#x2F;resources&#x2F;howto&#x2F;snapshots.html</a>)
stop502 months ago
Ceph and its s3 service?
johntitorjr2 months ago
If just peer-to-peer syncing between a group of devices is ok, syncthing is great. You could use it as cloud backup if one of the devices is running on a server.<p><a href="https:&#x2F;&#x2F;syncthing.net&#x2F;" rel="nofollow">https:&#x2F;&#x2F;syncthing.net&#x2F;</a>