I'm trying to backup a folder (e.g) /web/sites to /backups/websites and retain attributes, etc.

cp -Rp retains the information, yet isn't incremental

rsync -va seems to be great for incremental yet doesnt retain the attr/owner

Is it possible to tar, and pipe it through and untar whilst retaining attr/owner, if so, how can I do this? or is there a better solution?

link|improve this question

70% accept rate
feedback

2 Answers

up vote 0 down vote accepted

cp -pur seems to do the trick!

link|improve this answer
feedback

Going further than just an incremental copy, there's glastree (website/github): "the poor mans daily snapshot".

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.