1

I am using Linux tar command to take a full backup of one of my application data directory on every Monday and then later incremental backup on other days.

Everything is all right but my problem is that if any of the files have been deleted from the source, those files are still available when I restore the data from the backup.

How can I make sure that the file is deleted when I am restoring the files from the backup?

Thanks in advance.

1 Answer 1

0

I finally found the answer to my question and I thought of sharing with all.

During the restoration of files, make sure that the following switch is passed.

 --listed-incremental=/dev/null

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged .