rsync

Michael Havens bmike1 at gmail.com
Tue Apr 30 11:43:56 MST 2013


thanks, buddy!
:-)~MIKE~(-:


On Tue, Apr 30, 2013 at 8:14 AM, kitepilot at kitepilot.com <
kitepilot at kitepilot.com> wrote:

> Mike, read the man pages, your syntax is wrong and it is clearly stated
> when you:
> $ man rsync
> With that said, the syntax that you are concerned with in this instance is:
> rsync [OPTION...] SRC... [USER@]HOST:DEST
> A couple of details that may bite you:
> Don't rely on '~' to address a directory on the destination box.
> The '~' will be interpreted by the shell before the command is handed to
> 'rsync' and, if the tree in both boxes don't match, you'll get a mysterious
> error that won't make sense until you realize that 'bash globbing' is
> handing your 'rsync' the wrong path'
> That is also valid for:
> --exclude=.*mozilla*
> if '.*mozilla*' resolves to more than one path you will get interesting
> (and undecipherable) error messages.
> I would do it as:
> --exclude='.*mozilla*'
> So, the 'proper' construction would something like:
> $ rsync -vva \
>    --exclude='/home/bmike1/**Pictures/*' \
>    --exclude='.*mozilla*' \
>    --exclude='.*chromium*' \
>        xbmc at 192.168.0.3:/home/xbmc/**backupdirectoryname
> And remember:
> if you have any question,
> you will get any answer...    :)
> ET
>
>
>
> Michael Havens writes:
>
>> I want to have a backup of the hard drives of the computers in my house on
>> the other computer. What I was doing before is making each ~ identical.
>> Would the following command give me the desired effect?
>> rsync -vva --exclude=/home/bmike1/**Pictures/* --exclude=.*mozilla*
>> --exclude=.*chromium* ~/* *xbmc at 192.168.0.3:/home/xbmc/***
>> backupdirectoryname*;
>> rsync -vva --exclude=/home/bmike1/**Pictures/* --exclude=.*mozilla*
>> --exclude=.*chromium* xbmc at 192.168.0.3:/home/xbmc/
>> *~/backupdirectoryname*
>> *
>> *
>> is this correct?
>> :-)~MIKE~(-:
>>
> ------------------------------**---------------------
> PLUG-discuss mailing list - PLUG-discuss at lists.phxlinux.**org<PLUG-discuss at lists.phxlinux.org>
> To subscribe, unsubscribe, or to change your mail settings:
> http://lists.phxlinux.org/**mailman/listinfo/plug-discuss<http://lists.phxlinux.org/mailman/listinfo/plug-discuss>
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.phxlinux.org/pipermail/plug-discuss/attachments/20130430/c76954ab/attachment.html>


More information about the PLUG-discuss mailing list