HN user

acrosync

101 karma

I'm the lead developer of Acrosync for Windows. If you're interested in testing it, send an email to beta@acrosync.com. A few words about your test setup (windows version, server config, network speed, etc) would be nice.

Posts19
Comments29
View on HN
actionstitch.com 4y ago

Show HN: ActionStitch – DIY 180° sports video recording using 2 action cameras

acrosync
2pts1
github.com 5y ago

Duplicacy: A modern backup tool that supports RSA Encryption and Erasure Coding

acrosync
1pts0
duplicacy.com 6y ago

Duplicacy: Lock-free deduplication backup tool with a web interface

acrosync
2pts0
duplicacy.com 6y ago

Show HN: A new web GUI for Duplicacy – lock-free deduplication backup tool

acrosync
2pts0
github.com 8y ago

Show HN: Performance comparisons of cloud backup storages

acrosync
4pts0
github.com 9y ago

A performance comparison of Duplicacy, restic, Attic, and duplicity

acrosync
46pts49
github.com 9y ago

Duplicacy: Lock-free deduplication cloud backup tool, with “fair source” license

acrosync
40pts66
github.com 10y ago

Show HN: Duplicacy, cross-platform cloud backup based on Lock-Free Deduplication

acrosync
2pts5
github.com 10y ago

Duplicacy: cross-platform cloud backup tool based on lock-free deduplication

acrosync
48pts29
thephotobackup.com 11y ago

Show HN: free iOS app to sync all photos/videos to your own computer using rsync

acrosync
1pts0
github.com 11y ago

Show HN: Client side rsync lbirary

acrosync
2pts1
signup.thephotobackup.com 11y ago

Seeking beta tester for an iOS 8 photo and video backup app using rsync

acrosync
2pts1
acrosync.com 11y ago

Acrosync: native rsync client for Windows with Dropbox-like sync and more

acrosync
2pts0
www.acrosync.com 12y ago

Show HN: A native rsync client for Windows

acrosync
6pts0
itunes.apple.com 13y ago

Show HN: Feel the power of rsync on iOS with Acrosync 2.0 (free app)

acrosync
1pts0
www.acrosync.net 14y ago

A New rsync-based Dropbox Alternative for Windows

acrosync
3pts2
www.acrosync.net 14y ago

New rsync-based dropbox alternative for Windows

acrosync
4pts1
acrosync.com 15y ago

Show HN: rsync on iphone/ipad

acrosync
1pts2
news.ycombinator.com 15y ago

Show HN: Acrosync - wifi sync from mac/linux to ios

acrosync
2pts0

Thanks for your feedback. The reason I don't like open-source licenses is that I don't want for-profit companies to use my software without paying. The ideal license would be the one that requires them to pay while being appealing to personal users like you. I don't think these two goals are irreconcilable, but unfortunately such a license doesn't exist yet.

The name and the license are two separate issues.

I agree the name is confusing, however this is not intentional. As I explained in the other comment, I chose duplicacy because the domain name was available and this is a very good name for a backup tool (even better than duplicity).

I chose this fair source license because this is basically the only free-for-personal-use license. Many people here ask why I didn't go with a free license like GPL. Here is why. I believe software should be free for personal users, but I don't like for-profit companies using it for free. This software can potentially help companies solve a painful everyday problem (and therefore make more money) and yet there isn't a license to require them to pay if they don't distribute the software. In my opinion, this is extremely unfair to independent developers like me.

I might be wrong but I want to hear more from you if you're a Borg developer. My understanding is that you may be able to have multiple clients uploading chunks at the same time, but you won't be able to exploit cross-client deduplication if different clients have a similar set of files (OS files or a large code base for instance). Moreover, if your implementation require locks then it would be very hard to extend to cloud services.

Duplicacy doesn't use the filesystem events APIs. Instead, it checks the timestamps and sizes to identify modified files and only back up these files by defaults.

The main use case supported by Duplicacy but not any others including Duplicati and Arq is backing up multiple clients to the same storage while still taking advantage of cross-client deduplication. This is because Duplicacy saves each chunk as an individual file using its hash as the file name (as opposed to using a chunk database to maintain the mapping between chunks and actual files), so no locking is required with multiple clients. Another implication is that the lock-free implementation is actually simpler without the chunk database and thus less error-prone.

one of our users wrote a long post (https://duplicacy.com/issue?id=5651874166341632) comparing Duplicacy with other tools including Arq, based on his experience. I also added a comment to that thread comparing Duplicacy with Arq based on my read of their documentation.

Developer here. Duplicacy is built on the concept of Lock-Free Deduplication (https://github.com/gilbertchen/duplicacy/blob/master/DESIGN....), which allows it to backup multiple computers to the same storage without using any locks. Currently it supports local or networked drives, SFTP servers, Amazon S3, Backblaze B2, Microsoft Azure, Google Cloud Storage, Google Drive, OneDrive, Dropbox, and Hubic.

I recently released the source code under the Fair Source 5 License (https://fair.io/) which means it is free for individuals or businesses with less than 5 users. Otherwise the license costs only $20 per user/year.

Questions and suggestions are welcome.

Developer here. I'll be sending out beta invitations later today if you sign up now.

The coolest thing about this app is that it uses our own rsync implementation under the hood. So it is fast, smart about what needs to be uploaded, and works with most non-Windows computers out of the box (other than turning on 'Remote Login' for Mac computers).

I'll be happy to answer your questions here.

Thanks for pointing that out. I changed it to "the first and only rsync client in the App Store".

As an ios developer I completely agree with you. I was only interested in making rsync work on iphone/ipad for everyone but because of many ios limitations I had to spent much much more time coding the viewer.