backup.rst
changeset 2178 abbb150314d2
parent 2177 d2d54cdfce7e
child 2180 aba1eda8608a
equal deleted inserted replaced
2177:d2d54cdfce7e 2178:abbb150314d2
    21 .. note:: Cygwin ``rsync`` implementation can use NTFS hard links with
    21 .. note:: Cygwin ``rsync`` implementation can use NTFS hard links with
    22    ``--link-dest`` option. Check it with::
    22    ``--link-dest`` option. Check it with::
    23 
    23 
    24      cmd> fsutil hardlink list c:\backup\new\file.txt
    24      cmd> fsutil hardlink list c:\backup\new\file.txt
    25 
    25 
       
    26 Avoid carrying permissions and other attributes with::
       
    27 
       
    28   --no-p --no-o --no-g --no-A --no-X -O -J
       
    29 
       
    30 To show current progress::
       
    31 
       
    32   -v  --progress
       
    33 
       
    34 To copy over ssh::
       
    35 
       
    36   rsync -n -e 'ssh -l $RUSER' -r  /archive/ $RHOST:/archive/
       
    37