Docs/rsync.md
2022-06-16 15:41:31 +02:00

774 B

Rsync

Backup av hel disk

rsync -avHAWXS --info=progress2 / rsync://username@192.168.0.5/Share/path --exclude='/var/log/*'
  • a: archive, archive mode
  • v: verbose, increase verbosity
  • x: one-file-system, don't cross filesystem boundaries
  • H: hard-links, preserve hard links
  • A: acls, preserve ACLs
  • W: whole-file, copy files whole
  • X: xattrs, preserve extended attributes
  • S: sparse, handle sparse files efficiently

Kopiera mellan maskiner via SSH

Push:

rsync [-other options] -e 'ssh -p 22' SOURCE user@x.x.x.x:DESTINATION

Pull:

rsync [-other options] -e 'ssh -p 22' user@x.x.x.x:SOURCE DESTINATION