I have music that I play in my car, from an FAT32 USB stick. The folder which I use to put songs on is stored on my EXT4 hard drive. I add/remove/retag songs regularly and occasionally want to rsync
the changes to the USB stick. But for some unknown reason (maybe permissions?), rsync
copies all the files every time rather than just changed ones. I am calling rsync
like:
rsync -vrlptgD source dest
How can I make it work like I want it to (i. e. know when a file hasn't been changed and don't copy it)?
--iconv
helpful when going from source linux to dest MacOS – wim May 19 '15 at 11:17modify-window=2
because=1
still copies all files. Copying from NTFS to FAT32. After that it's fine though. – Luc Dec 07 '15 at 18:28--size-only
flag to skip files that match in size – alexandre1985 Nov 12 '17 at 01:02