TE
科技回声
首页24小时热榜最新最佳问答展示工作
GitHubTwitter
首页

科技回声

基于 Next.js 构建的科技新闻平台,提供全球科技新闻和讨论内容。

GitHubTwitter

首页

首页最新最佳问答展示工作

资源链接

HackerNews API原版 HackerNewsNext.js

© 2025 科技回声. 版权所有。

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

2 点作者 Daunk2 个月前
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 条评论

pwg2 个月前
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 个月前
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 个月前
Ceph and its s3 service?
johntitorjr2 个月前
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>