Hello guys,
I am working on a backup solution for two MacBooks to seperate partitions on a windows server storage. Time Machine does not work for me due to SMB and Mavericks, so had to look further and found rSync to be the one solution for me. Unfortunately I still have some questions I could not find answers to by myself. Please apologize when my questions have been answered here already but I could not find any answers that would help me.
I am planning to do incremental backups every evening (triggered by an calendar event) for which I am using rsync 3.1.0 with sudo in order to solve the Permission Denied (13) issue. To skip the password prompt when running it in a shell script I was planning to edit the sudoer file and add a line in which I am allowed to run this script (and just that one) without password prompt. Does that work?
In the following you can see the rsync command I am currently using:
I am not sure about -z though. I know it stands for compression and should be turned on when doing rsync through network but when trying it out on my external hd (usb 3) it cut down the transfer speed.
When doing a backup I got this line during the progress:
Is my understanding correct?
ir-chk: the incremental scan is running and the file list is not yet completed but the transfer has already begun?
6219/904515: 904515 files are on that file list at the moment and 6219 have to be checked (whether they have to be updated) yet?
76,279,379,222: about 76GB of data have been already transferred (or checked)?
I hope some of you will have mercy on me and help.
Do you have any advice on what I could improve? My last clean installation of Mac OS X was after I bought my beloved MBPr (about 2 years ago) so is there any chance that a new installation would solve the too many files to backup-issue?
I am looking forward to hearing from you. Thanks in advance!
I am working on a backup solution for two MacBooks to seperate partitions on a windows server storage. Time Machine does not work for me due to SMB and Mavericks, so had to look further and found rSync to be the one solution for me. Unfortunately I still have some questions I could not find answers to by myself. Please apologize when my questions have been answered here already but I could not find any answers that would help me.
I am planning to do incremental backups every evening (triggered by an calendar event) for which I am using rsync 3.1.0 with sudo in order to solve the Permission Denied (13) issue. To skip the password prompt when running it in a shell script I was planning to edit the sudoer file and add a line in which I am allowed to run this script (and just that one) without password prompt. Does that work?
In the following you can see the rsync command I am currently using:
Code:
sudo rsync -a --info=progress2 /* /Volumes/name/Backup --exclude ".DS_Store" --exclude ".fseventsd" --exclude ".Spotlight-V100" --exclude ".TemporaryItems" --exclude ".Trashes" --exclude={/dev/*,/proc/*,/sys/*,/tmp/*,/run/*,/mnt/*,/Volumes/*,/media/*,/lost+found}
I am not sure about -z though. I know it stands for compression and should be turned on when doing rsync through network but when trying it out on my external hd (usb 3) it cut down the transfer speed.
When doing a backup I got this line during the progress:
Code:
76,279,379,222 61% 17.76GB/s 1:12:02 xfr#68035, ir-chk=6219/904515
Is my understanding correct?
ir-chk: the incremental scan is running and the file list is not yet completed but the transfer has already begun?
6219/904515: 904515 files are on that file list at the moment and 6219 have to be checked (whether they have to be updated) yet?
76,279,379,222: about 76GB of data have been already transferred (or checked)?
I hope some of you will have mercy on me and help.
I know we are talking about millions of files here but although I had my macbook connected via ethernet (Gigabit) it took almost 6 hours for the backup to be completed. And when running the rsync command a second time to see how long it takes to run the incremental scan it took about 90 minutes. Is that alright? And will the incremental scan take longer via WiFi?
Should I add more folders/files to the exclusion list?
Is the partition format of my backup partition on the windows 8 server (NTFS, default cluster size) an issue?
Will I be able to use the backups to restore my system in case of a total crash? I know I wont be able to simply restore on install like I would be when using Time Machine, but still
Do you have any advice on what I could improve? My last clean installation of Mac OS X was after I bought my beloved MBPr (about 2 years ago) so is there any chance that a new installation would solve the too many files to backup-issue?
I am looking forward to hearing from you. Thanks in advance!