i think i've figured out what i need. the problem with using most rsync-based options is that i want to store the increments on a separate filesystem from the full backup. thus, hard links wouldn't work. so... tar to the rescue: find / -mtime -1 -type f -print > backup-list.txt tar -cv -T backup-list.txt -f increment.tar --charles.