Showing posts with label rsync. Show all posts
Showing posts with label rsync. Show all posts

Tuesday, December 15, 2020

rsync: make backup to remote server

rsync -avzhe ssh --progress ./folder_to_backup/ user@server-ip:./folder_on_server

Thursday, August 30, 2018

rsync: make a backup

Example:
rsync -avh -R --info=progress2 --delete /home/source/folder /run/media/backup/folder

Wednesday, August 29, 2018

rsync: copy files over ssh with non-default port

rsync -azvh -e 'ssh -p 22222' ./source_folder user@destination_ip:/destination/folder/name