Rsync: Difference between revisions

From David's Wiki
No edit summary
Line 40: Line 40:


You can also use <code>--exclude-from</code> and point to a text file list of exclusions.
You can also use <code>--exclude-from</code> and point to a text file list of exclusions.
==Delete==
[https://superuser.com/questions/156664/what-are-the-differences-between-the-rsync-delete-options StackOverflow Differences between rsync delete]
Be very careful with deleting.
By default rsync only deletes files on the target which have the same name as files on the source.
Below are the relevent flags for deleting files on the target and the source.
The following two options deletes extraneous files on the target.
* <code>--delete</code> Delete files on the target directory which are not in the source.
* <code>--delete-excluded</code> Delete files on the target directory which are excluded in the transfer.
The following options concern replacing files on the target with the same name.
* <code>--delete-before</code> Deletes files on the target before new replacement is copied over. (default)
* <code>--delete-during</code> Deletes files on the target as replacement files with the same name are being copied over.
* <code>--del</code> Alias for <code>--delete-during</code>
* <code>--delete-delay</code> Marks files for deletion during transfer. Waits until the transfer is complete to delete files.
* <code>--delete-after</code> Checks for files and deletes files after transfer after the transfer.
The following option deletes files from the source directory.
* <code>--remove-source-files</code> Deletes files which have been synced.

Revision as of 03:12, 1 August 2020

See Archwiki:rsync and rsync(1) - Linux man page

Getting Started

rsync -a <src> <dst> --info=progress2
Flags
  • -a archive mode (recursive, preserves symlinks, permissions, times, group, owner, devices)
  • --no-i-r or --no-inc-recursive scans all files at the beginning rather than during the transfer
  • --progress shows per-file progress
  • --info=progress2 shows overall progress during the transfer

System Backups

  • Create a script and add it to your crontab -e

Basic Backup

#!/bin/bash

TARGET_FOLDER=<your target for backup>
EXCLUSIONS='--exclude={"/dev/*","/proc/*","/sys/*","/tmp/*","/run/*","/mnt/*","/media/*","/lost+found"}'

sudo rsync -aAXq ${EXCLUSIONS} / "${TARGET_FOLDER}"
Flags
  • -a archive mode
  • -A preserve ACLs (access control lists)
  • -X preserve extended attributes
  • -q quiet

Exclude

Add --exclude to your call.

Notes
  • Exclude typically uses a pattern. If you want to exclude from the root of the transfer, prepend /.
    E.g
    rclone --exclude "/project/node_modules" project /some/other/dir/
  • Add --exclude before --stats and --delete if you want it to work.

You can also use --exclude-from and point to a text file list of exclusions.

Delete

StackOverflow Differences between rsync delete

Be very careful with deleting. By default rsync only deletes files on the target which have the same name as files on the source.

Below are the relevent flags for deleting files on the target and the source.

The following two options deletes extraneous files on the target.

  • --delete Delete files on the target directory which are not in the source.
  • --delete-excluded Delete files on the target directory which are excluded in the transfer.

The following options concern replacing files on the target with the same name.

  • --delete-before Deletes files on the target before new replacement is copied over. (default)
  • --delete-during Deletes files on the target as replacement files with the same name are being copied over.
  • --del Alias for --delete-during
  • --delete-delay Marks files for deletion during transfer. Waits until the transfer is complete to delete files.
  • --delete-after Checks for files and deletes files after transfer after the transfer.

The following option deletes files from the source directory.

  • --remove-source-files Deletes files which have been synced.