duplicity-talk
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Duplicity-talk] command differences between duplicity and rsync !?


From: Ian Barton
Subject: Re: [Duplicity-talk] command differences between duplicity and rsync !?
Date: Wed, 18 Jun 2008 08:02:30 +0100
User-agent: Thunderbird 2.0.0.14 (X11/20080505)

> Im my very first preparations for an intelligent Backup Solution
> I got pointed to rsync ...
> ... and somewhat later to Duplicity ! ;-)
> 
> I am not only new to Duplicity / rsync ...
> ... I am also quite green / newbie to Linux !! ;-))
> 
> Can you advice and guidance me thru the 
> important command differences between these two ??
> 
> Command used with rsync is:
> rsync -av --progress /source /target
> 
> Important for me is: NO encryption and 
> other hints and warnings are very appreciated too. ;-D
> 
The whole point of Duplicity is encryption, so if you *don't* want
encryption rsync is what you need.

A basic rsync backup would be:

rsync -avz --delete /source/ /target/

-avz means preserve all file permissions, recurse subdirs and compress
the transfer to save bandwidth. The --delete option deletes files on the
destination, which have been deleted on the source.

Note the trailing backslashes - the prsence/absence of these affects
where rsync places the backups on the destination.

Have a look at rsnapshot (requires Perl) and rdiff-backup (requires
Python). These are wrappers around rsync which can do an awful lot of
extra things.

Ian.




reply via email to

[Prev in Thread] Current Thread [Next in Thread]