I'm trying to setup a backup script on Ubuntu. Every day I want to copy my local source directory to a backup directory on a remote server uniquely named with the date. (e.g., backup-jan1/, backup-jan2/, etc) It should store a mirror of the earliest state and use difference files to recreate the new backup points.
This is pretty simple with rsync.
I've been looking at the backup option in cPanel while it would be great to have it able to do versioning, for now I think a small change would make it even better.
When backup is scheduled for Daily, Weekly and Monthl. cpbackup does the daily first then copy it over to weekly and monthly.
This means, there is at least once a week when daily = weekly and once a month daily = monthly.
Hi Folks,
I have a NAS running busybox with a ARM processor.
Several PC's backup full weekly and several daily incrementals to the NAS.
The NAS has two USB attached disks, which are swapped off site weekly.
The problem is the built in rsync only transfers at 2Mb/s to the external USB and takes about 6 hours per PC and often fails to complete.
I tried updating the built in rsync, and ran it fr
I use rsnapshot to create hourly/daily/weekly/monthly backups of my "work"-share.
I just like to make sure I am using the correct rsync command on Linux.
I am using rsync for backup about 100GB files and directories. My command is
sudo rsync -azvv /home/path/folder1/ /home/path/folder2
However, the output for each file goes up so quickly and there are so many files, that I worry if there are some errors I cannot catch. So I wonder how you would catch any errors during backup?
Hi guys,
I want to make backup of files/directories and then restore it removing all present changes and new files and directories.
example: make /home backup and after time restore how it was before
How can I do it with command line: rsync, cp or with stomething else
Sorry for my english :(
Is it possible for rsync to be used on 1 backup server and then connect to all the other servers and grab files and backup incrementally?
my current command: (how ever this is more a PUT then a GET)
rsync -avz -e ssh /home yourusername@yourusername.bqbackup.com:server1
I am trying to do a backup from Linux to USB Pen Drive with rsync each day and I take home the Pen Drive at night.