I'm attempting to backup my photos (and some other files) to a 64 GB flash drive that I can store off-site for safe keeping. I am using rsync -avS <source> <dest on USB drive> to write the files. I've done this successfully with other data to this same device, but the photos seem to be giving rsync trouble. It gets to the same point (same file) in the process each time and hangs. CTRL C successfully kills it. FWIW, it's writing the files from a FAT32 partition on the HDD to a FAT32 partition on the USB device, so I'm getting a "rsync: chgrp <filename> failed: Operation not permitted (1) for each file, but the files are being written successfully.
When I press CTRL C, I see the "rsync error: received SIGINT, SIGTERM, or SIGHUP (code 20) at rsync.c(632) [sender=3.1.1]" error and then it spits out a large collection of the aforementioned chgrp warnings. As far as I can tell, these are not for files that have already been written. Then at the end is another "rsync error: received SIGINT, SIGTERM, or SIGHUP (code 20) at io.c(504) [generator=3.1.1]" error.
Also, I have an external HDD attached that I use for regular backups and I use exactly the same command to write exactly the same files to it (also to a FAT32 partition). It doesn't have any trouble with the process and runs through to completion. It's almost as if the USB stick is going to sleep in the middle of the process.
Can anyone provide me some insight on how to fix this problem?
Thanks.
Bill Lugg
When I press CTRL C, I see the "rsync error: received SIGINT, SIGTERM, or SIGHUP (code 20) at rsync.c(632) [sender=3.1.1]" error and then it spits out a large collection of the aforementioned chgrp warnings. As far as I can tell, these are not for files that have already been written. Then at the end is another "rsync error: received SIGINT, SIGTERM, or SIGHUP (code 20) at io.c(504) [generator=3.1.1]" error.
Also, I have an external HDD attached that I use for regular backups and I use exactly the same command to write exactly the same files to it (also to a FAT32 partition). It doesn't have any trouble with the process and runs through to completion. It's almost as if the USB stick is going to sleep in the middle of the process.
Can anyone provide me some insight on how to fix this problem?
Thanks.
Bill Lugg
Comment