Since I have left Windows, I am looking for a software that will replace ViceVersa. I need something that is highly recommended for file syncing among the Linux / Ubuntu users as I am new to this area.
What do you recommend? Which is the best? I read about one called rsync and another called Conduit.
If possible I would also like a tool that would have GUI interface, and once I get more familiar with Linux a command line sync utility would also be good.
Main goal is to backup everything local, nothing on line, but all backups that are local will be to external disks and syncing between computers.
Another feature would be able to see a preview of what is ready to be backed up / synced before it actually executes the operation.
Thanks...
Deja-Dup (aka Backup in the latest versions of Ubuntu) can do your first round of backups very easily. They'll let you copy your data to another partition if that's what you want to do.
To backup your backups on other computers, I'd probably recommend something like
rsync
. It's command-line based but it'll make things easier in the long run :)Notes about this method:
openssh-server
installed on each machine.crontab -e
Alternatively you can use a different filesystem for your backup location. There are emerging filesystems that act as a distributed filesystem to keep copies of the data on multiple nodes. This is more commonly used in SANs than backup scenarios, but it might be worth a look. One example is FineFS.
Also - useful reading:
Comparison of backup tools